-
Notifications
You must be signed in to change notification settings - Fork 71
/
admin.php
34 lines (33 loc) · 827 Bytes
/
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<title>Admin Login</title>
<link rel="stylesheet" href="css/styles1.css" />
</head>
<body>
<div class="login-form">
<h2>Login to your account</h2>
<form action="php/checklogin.php" method="POST">
<label>
Email
<input type="email" id="email" placeholder="email" name="email" />
</label>
<br /><br />
<label>
Password
<input
type="password"
id="password"
placeholder="password"
name="password"
/>
</label>
<br /><br />
<div class="submit-form">
<input type="submit" id="login" name="login" value="Login" />
</div>
</form>
</div>
</body>
</html>