-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
33 lines (32 loc) · 983 Bytes
/
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" href="css/main.css">
<title>Login</title>
</head>
<body>
<div class="loginBox">
<h2>Login</h2>
<form action="#">
<div class="userInputBox">
<input type="text" id="usernameInputBox" required>
<Label for="usernameInputBox">Username</Label>
</div>
<div class="userInputBox">
<input type="password" id="passwordInputBox" required>
<Label for="passwordInputBox">Password</Label>
</div>
<a href="#" type="submit">
<!-- span tag for button animation -->
<span></span>
<span></span>
<span></span>
<span></span>
Submit
</a>
</form>
</div>
</body>
</html>