-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsignup.html
37 lines (35 loc) · 1.42 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
37
<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="./styles/signup.css">
<link rel="stylesheet" href="./styles/navbar.css">
<link rel="stylesheet" href="./styles/footer.css">
<link rel="shortcut icon" href="//cdn.shopify.com/s/files/1/0052/7551/6995/files/LOGO_32x32.png?v=1548735766" type="image/png">
<title>Create Account – FAB BAG</title>
</head>
<body>
<div id = "navbar"></div>
<div class = "signup">
<p>Create An Account</p>
<button id = "fb">Sign In With Facebook</button><br>
<button id = "gm">Sign In With Gmail</button>
<form action="" class = "signupform">
<label for="">First Name<em>*</em></label><br>
<input type="text" id = "fname"><br>
<label for="">Last Name<em>*</em></label><br>
<input type="text" id = "lname"><br>
<label for="">Your Email Address<em>*</em></label><br>
<input type="text" id = "email"><br>
<label for="">Your Password<em>*</em></label><br>
<input type="password" id ="password"><br>
<button id = "signup">Create An Account</button>
</form>
<h3>Or</h3>
<button id = "signin">Sign In</button>
</div>
<div class="footer"></div>
</body>
</html>
<script src = "./scripts/signup.js" type = "module"></script>