-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathlog-in.html
More file actions
29 lines (26 loc) · 770 Bytes
/
log-in.html
File metadata and controls
29 lines (26 loc) · 770 Bytes
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
<html>
<head>
<link href="./style_login.css" type="text/css" rel="stylesheet">
<title>
Log-In
</title>
</head>
<body>
<form method="post">
<div class="Log-In">
<h2> <label for="identity">Log-In ID : </label> </h2><br>
<input type="text/css" name="id" id="identity" required>
</div>
<div>
<br><br>
<h2><label for="pass"> Password : </label> </h2> <br>
<input type="password" name="passcode" id="pass" required>
</div>
<div>
<input type="checkbox" name="remember" id="rememb"><label for ="rememb">Remember Me</label>
</div>
<div>
<br><br><input type="submit" value="Log-In" name="log"><input type="button" value="Forget-Password" name="forget">
</form>
</body>
</html>