-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
37 lines (36 loc) · 1.36 KB
/
index.html
File metadata and controls
37 lines (36 loc) · 1.36 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
34
35
36
37
<!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">
<title>Document</title>
</head>
<body>
<div class="login-wrapper">
<div class="login-container">
<h2>SignUp</h2>
<head>
<div class="input-group">
<label for="username">Email</label>
<input type="email" id="email" name="username" required>
</div>
<div class="input-group">
<label for="password">Password</label>
<input type="password" id="password" name="password" required>
</div>
<div class="actions">
<button type="submit" class="signUp login-button">SignUp</button>
<button type="submit" id="logIn" class="login-button"><a href="indexC.html">Create Acc</a></button>
</div>
<br>
<br>
<button id="logOutBtn" class="login-button">logOut</button>
<a class="login-button" href="todo.html">Dashborad</a>
</head>
</div>
</div>
<script src="firebase.js" type="module"></script>
<script src="app.js" type="module"></script>
</body>
</html>