forked from In-Saiyan/Ascent
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsignup.html
More file actions
39 lines (33 loc) · 1.34 KB
/
signup.html
File metadata and controls
39 lines (33 loc) · 1.34 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
38
39
<!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="./src/css/signup.css">
<title>signup</title>
</head>
<body>
<div class="a">
<div class="left">
<form action="" class="form">
<h1>Welcome to Ascent</h1>
<div class="signup-main">
<br> <label for="email">Email</label>
<br> <input type="Email" id="email" name="email" required>
<br><br> <label for="Password">Password</label>
<br> <input type="Password" id="Password">
<br><br> <label for="Confirm Password">Confirm Password</label>
<br> <input type="Confirm Password" id="Password">
<br> <br> <input type="submit" name="Log" id="Log" value="Sign Up">
<br> <br> <input type="submit" name="continue" id="continue" value="Continue with Google">
</div>
<p><i>Terms and Conditions</i> <b>•</b> <i>Privacy Policy</i></p>
<p>Already a user? <a href="./signin.html">Log in</a></p>
</form>
</div>
</div>
<div class="b">
<div class="right"></div>
</div>
</body>
</html>