-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathindex.html
More file actions
31 lines (30 loc) · 1.32 KB
/
index.html
File metadata and controls
31 lines (30 loc) · 1.32 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
<!DOCTYPE html>
<html lang="en">
<head>
<title>BootCamp</title>
<link rel="stylesheet" href="signUp.css">
<link rel="stylesheet" href="style.css">
<script src="./signUp.js" defer type="module" ></script>
</head>
<body>
<div class="login-container">
<div id="main">
<h1>Sign In</h1>
<input id="email" type="text" placeholder="Email"></input>
<input id="password" type="password" placeholder="Password"></input>
<button id="submit">Login</button>
<p><span>or</span></p>
<button id="sign-up">Sign Up</button>
</div>
<div id="create-acct">
<h1>Create an Account</h1>
<input id="email-signup" type="text" placeholder="Email *"></input>
<input id="confirm-email-signup" type="email" placeholder="Confirm Email *"></input>
<input id="password-signup" type="password" placeholder="Password *"></input>
<input id="confirm-password-signup" type="password" placeholder="Confirm Password *"></input>
<button id="create-acct-btn">Create Account</button>
<button id="return-btn">Return to Login</button>
</div>
</div>
</body>
</html>