-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsignUp.html
36 lines (33 loc) · 1.54 KB
/
signUp.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
32
33
34
35
36
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" href="signUp.css">
<link rel="stylesheet" href="style.css">
<script src="./signUp.js" defer type="module"></script>
<title>Bootcamp</title>
</head>
<body>
<div class="login-container">
<div id="main">
<h1>Sign In</h1>
<input placeholder="Email" type="email" name="" id="email"></input>
<input placeholder="Password" type="password" name="" id="password"> </input>
<button id="submit" type="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 placeholder="Email*" type="email" name="" id="email-signup"></input>
<input placeholder="Confirm Email*" type="email" name="" id="confirm-email-signup">
<input placeholder="Password*" type="password" name="" id="password-signup">
<input placeholder="Confirm Password*" type="password" name="" id="confirm-password-signup">
<button id="create-acct-btn">Create Account</button>
<button id="return-btn">Return to Login</button>
</div>
</div>
</body>
</html>