-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpage.html
24 lines (22 loc) · 973 Bytes
/
page.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Login-Page</title>
<link rel="stylesheet" href="page.css">
</head>
<body>
<div class="login">
<h1>Login</h1>
<form>
<label for="username" id="username">Enter Username:<br> <input id="username" name="username" type="text" required placeholder="Type your Username"/></label>
<label for="password" id="password">Enter Password:<br> <input id="password" name="password" type="text" required placeholder="Type your Password"/></label>
</form>
<p class="forget">Forgot Password</p>
<button onclick = "location.href='selectionpage.html';" id="btn">Log In</button>
<p id="signin">Don't have an account?</p>
<button onclick = "location.href='page2.html';" id="btn">Sign In</button>
</div>
</body>
</html>