-
Notifications
You must be signed in to change notification settings - Fork 0
/
index2.html
36 lines (29 loc) · 901 Bytes
/
index2.html
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
<!DOCTYPE html>
<html>
<head><title>STORE MANAGER</title>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<link rel="stylesheet" href="style.css">
</head>
<body>
<div class = "wrap">
<div id = "title">
<h1 >LOGIN FORM</h1></div>
<form >
<div class="imgcontainer">
<img src="images/avatar.png" alt="Avatar" class="avatar">
</div>
<div class="container">
<label><b>Username</b></label>
<input type="text" placeholder="Enter Username" name="uname" required>
<label><b>Password</b></label>
<input type="password" placeholder="Enter Password" name="psw" required>
<button type="button" class="login"> <a href="adminhomepage.html">Login</a> </button>
<div>
<input type="checkbox" checked="checked"> Remember me
</div>
</div>
</form>
</body>
</html>