-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
33 lines (33 loc) · 1.2 KB
/
index.html
File metadata and controls
33 lines (33 loc) · 1.2 KB
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" />
<link rel="icon" type="image/svg+xml" href="/vite.svg" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<link rel="stylesheet" href = "/css/index.css">
<link rel="stylesheet" href = "/css/login.css">
<title>Log In</title>
</head>
<body>
<div class = "main-section">
<h1>Log in</h1>
<form action="/auth/login" method="post">
<div id = "username-input-wrapper">
<label for="username-input">Username</label>
<input name="username" placeholder="Username" id = "username-input" required/>
</div>
<div id = "password-input-wrapper">
<label for="password-input">Password</label>
<input name="password" placeholder="Password" id = "password-input" required/>
</div>
<div id = "login-btn-wrapper">
<button type="submit" id = "login-btn">Sign In</button>
</div>
</form>
<div class = "horizontal-divider"></div>
<div id = "register-wrapper">
<a href ="/register"><button type = "button" id = "register-btn">Create new account</button></a>
</div>
</div>
</body>
</html>