-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
29 lines (28 loc) · 1.1 KB
/
index.html
File metadata and controls
29 lines (28 loc) · 1.1 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
<!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="style.css">
<script defer src="../Navbar/navbar.js"></script>
<script src="app.js"></script>
<title>Animated Login</title>
</head>
<body>
<div class="login">
<form id="login__form">
<div class="username_section">
<label for="login__username">Username</label>
<input type="text" required name="username" autocomplete="off" id="login__username" class="username">
</div>
<div class="password_section">
<label for="login__password">Password</label>
<input type="password" required name="password" id="login__password" class="password">
</div>
<button type="submit" id="form__submit">Log In</button>
<input type="button" id="google_login" value="Continue with Google">
<p>Don't have an account .SignUp <a href="../Signup/index.html">here</a></p>
</form>
</div>
</body>
</html>