-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathadmin.php
46 lines (39 loc) · 1.18 KB
/
admin.php
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
40
41
42
43
44
45
46
<html>
<head>
<meta charset="utf-8">
<title>Menswear</title>
<link rel="stylesheet" href="css/login.css">
</head>
<style>
p{
color: red;
display: flex;
width: 90%;
margin-left: 10%;
/* text-size-adjust: 50%; */
font-size: 15px;
}
</style>
<body>
<div class="navbar">
<img src="images/logo.png" class="rotate">
</div>
<form action="adm.php" method="post">
<div class="login-box">
<h1>AdminLogin</h1>
<?php if (isset($_GET['error'])){ ?>
<p class="error"><?php echo $_GET['error']; ?></p>
<?php } ?>
<div class="textbox">
<i class="fa fa-user" aria-hidden="true"></i>
<input type="text" placeholder="ID" name="id">
</div>
<div class="textbox">
<i class="fa fa-lock" aria-hidden="true"></i>
<input type="password" placeholder="Password" name="pas">
</div>
<input class="btn" type="submit" name="" value="Sign In">
</div>
</form>
</body>
</html>