-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathSign-up.html
77 lines (61 loc) · 2.74 KB
/
Sign-up.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
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
<!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">
<title>APHRODITE-#</title>
<link link rel="stylesheet" href="./CSS/Sign-up.css">
</head>
<body>
<!--grid container for LHS and RHS items-->
<section class="grid-container">
<!--background image used in the website-->
<div class="img-container">
<div class="content">
<img id="aphrodite" src="./Images/Logo1.png">
<h2> Get to see thousand of people based on your <br> preferences anywhere and anytime on <span> Aphrodite </span>
</h2>
<h3>
Already have an account? <a href="login.html"> # </a>
</h3>
</div>
</div>
<!--beginning of RHS element-->
<div class="sign-up-form">
<!--top flex-items on the right hand side-->
<div class="flex-container">
<div id="top-left">
Create account
</div>
<a href="login.html" id="sign-in">
#
</a>
</div>
<!--form container starts here-->
<form class="input-forms">
<div class="forms">
<label for="Full Name">Full Name</label> <br>
<input type="text" id="Full_Name" name="Full Name" required>
<p class="nameError"></p> <br>
<label for="Email Address">Email Address</label> <br>
<input type="email" id="Email_Address" name="Email Address" required>
<p class="EmailError"></p> <br>
<label for="psw">Password <span id="form-span">(Enter atleast 8 characters)</span></label>
<input type="password" id="psw" name="Password" minlength="8" placeholder="" required>
<p class="passwordError"></p> <br>
<label for="psw-confirm">Confirm Password</label> <br>
<input type="password" name="psw-confirm" id="psw_confirm" minlength="8" required>
<p class="confirmPasswordError"></p> <br>
<input onclick="registerNewUser()" type="button" value="Create new account">
</div>
</form>
<!--end of forms-->
<p>By signing up, I agree to the QNET
<a href="#" target="_blank">Terms of use</a> and <a href="#" target="_blank"> Privacy Policy </a>
</p>
</div>
</section>
<script src="/javascript/Sign-UpAuth.js"></script>
</body>
</html>