-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathindex.html
31 lines (31 loc) · 986 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Document</title>
<link rel="stylesheet" href="signIn.css">
<script type="module" src="firebaseauth.js"></script>
<script type="module" src="signIn.js" defer></script>
<!-- <link rel="stylesheet" href="output.css"> -->
</head>
<body>
<div class="mostouter">
<div class="outer">
<div><h1>Sign In</h1></div>
<form method="post">
<div id="signUpMessage"></div>
<div ><input id="username" type="email" required placeholder="Username"></div>
<div ><input id="password" type="password" required placeholder="Password"></div>
<button id="submit">Sign In</button>
</form>
<div id="newdiv">
<p id="newswitch">Not Registered?</p>
</div>
<div class="switched border-2 border-black">
<a class="border-2 border-black" id="switch" href="register.html">Register</a>
</div>
</div>
</div>
</body>
</html>