-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
45 lines (34 loc) Β· 1.24 KB
/
index.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
37
38
39
40
41
42
43
44
45
<!DOCTYPE html>
<html>
<head>
<link rel="stylesheet" type="text/css" href="Ash.css">
</head>
<body>
<div class="row">
<div class="column1">
</div>
<div class="column" style="background-color:#bbb;">
<form action="#" method="post">
<div class="imgcontainer">
<img src="avatar.png" alt="Avatar" class="avatar">
</div>
<div class="container">
<label for="uname"><b>Username</b></label>
<input type="text" placeholder="Enter Username" name="uname" required>
<label for="psw"><b>Password</b></label>
<input type="password" placeholder="Enter Password" name="psw" required>
<button type="submit"><a href="body.html" style="text-decoration: none;color:white">Login</a></button>
<label>
<input type="checkbox" checked="checked" name="remember"> Remember me
</label>
</div>
<div class="container" style="background-color:#f1f1f1">
<button type="button" class="cancelbtn">Cancel</button>
<span class="psw">Forgot <a href="#" style="text-decoration:none;">password?</a></span>
</div>
</form>
<div class="sign"><center><a href="signup.html" style="text-decoration: none;color:white">Sign Up</a></center></div>
</div>
</div>
</body>
</html>