-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathadmin.php
More file actions
39 lines (38 loc) · 1.36 KB
/
Copy pathadmin.php
File metadata and controls
39 lines (38 loc) · 1.36 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
<?php session_start(); if(isset($_SESSION['user'])){header('location:home.php');}?>
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title>Login</title>
<link rel="shortcut icon" type="x-image/icon" href="images/favicon.jpg" />
<link rel="stylesheet" type="text/css" href="css/login.css" />
<link rel="stylesheet" type="text/css" href="css/navigation.css" />
</head>
<body>
<img class="logo" src="images/favicon.jpg" width="40px" height="40px"/>
<div id="menu">
<div id="text-menu">
</div>
</div><br />
<form method="post" action="pro-login.php">
<div id="table-login">
<font id="login-head">Login</font>
<table id="login" cellpadding="5px">
<tr><td><input type="text" name="user" placeholder="Username" /></td></tr>
<tr><td><input type="password" name="pwd" placeholder="Password" /></td></tr>
<tr><td id="submit-btn"><input name="login" type="submit" value="Sign In" /></td></tr>
</table>
</div>
</form>
<div id="content">
<div id="content-text">
<font size="+6">Hai Admin apa kabar ?</font><br />Tolong gunakan web ini dengan sebaiknya.
</div>
<br />
<!--<font class="content-btn"><a href="register.php">Daftar Sekarang »</a></font>
<font class="content-btn"><a href="forgot.php">Lupa Password »</a></font>-->
</div>
<div id="footer">
<i>No Created</i> | Copyright © 2019.
</div>
</body>
</html>