-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsignup.html
91 lines (91 loc) · 4.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
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
78
79
80
81
82
83
84
85
86
87
88
89
90
91
<!DOCTYPE html>
<html>
<head>
<title>GameZone</title>
<meta charset="UTF-8">
<meta name="Gamezone Home page" content="GAMEZONE SIGN UP PAGE">
<meta name="keywords" content="Game Store online e-sport">
<meta name="viewport" content="width = device-width,initial-scale = 1">
<link href="CSS/style.css" rel="stylesheet">
</head>
<body>
<header>
<a href="index.html"><img src="Images/logo.png" id="logo"></a>
<nav>
<ul>
<li><a href="index.html"> HOME </a></li>
<li><a href="store.html"> STORE </a></li>
<li><input type="text" placeholder="search" name="search" id="search"></li>
<li><a href="login.html" id="login"><img src="Images/login.png" id="login_logo"> LOGIN </a></li>
</ul>
</nav>
</header>
<div class="container" id="login_page">
<section class="login_block">
<img src="Images/logo_login.png" id="login_img">
</section>
<section class="login_block">
<form id="login_form" onsubmit="return validateForm()" action="login.html">
<table id="login_table">
<caption>Sign Up</caption>
<tr>
<td><label for="email">Email</label></td>
<td><input type="email" id="email" onblur="validateEmail()"></td>
<td><span id="email_err"></span></td>
</tr>
<tr>
<td><label for="uname">Username</label></td>
<td><input type="text" id="uname" onblur="validateUname()"></td>
<td><span id="uname_err"></span></td>
</tr>
<tr>
<td><label for="pass">Password</label></td>
<td><input type="password" id="pass" onblur="validatePass()"></td>
<td><span id="pass_err"></span></td>
</tr>
<tr>
<td><label for="cpass">Confirm Password</label></td>
<td><input type="password" id="cpass" onblur="validateCPass()"></td>
<td><span id="cpass_err"></span></td>
</tr>
<tr>
<td><label for="contact">Contact No.</label></td>
<td><input type="tel" id="contact" onblur="validateContact()"></td>
<td><span id="contact_err"></span></td>
</tr>
<tr>
<td colspan="2" style="text-align: center;"><button>Sign Up</button></td>
</tr>
<tr>
<td colspan="2" style="text-align: center;"><a href="login.html">Already a user? Sign In.</a></td>
</tr>
</table>
</form>
</section>
</div>
<footer>
<hr width="90%" style="margin-top: 10px; color: white;">
<p >GameZone. All rights reserved. All trademarks are property of their respective owners in the INDIA and other countries.
GST included in all prices where applicable.</p>
<nav>
<ul>
<li class="ele_mid"><a href="#"> Privacy Policy </a></li>
<li class="ele_mid"><a href="#"> Legal </a></li>
<li><a href="#"> Cookies </a></li>
</ul>
</nav>
<hr width="90%" style="margin-top: 10px; color: white;">
<nav>
<ul>
<li class="ele_mid"><a href="#"> About </a></li>
<li class="ele_mid"><a href="#"> Jobs </a></li>
<li class="ele_mid"><a href="#"> Support </a></li>
<li class="ele_mid"><a href="#"><img src="Images/fb.png" style="height: 12px;"> GameZone </a></li>
<li class="ele_mid"><a href="#"><img src="Images/insta.png" style="height: 12px;"> @GameZone </a></li>
<li><a href="#"><img src="Images/twitter.png" style="height: 12px;"> @GameZone </a></li>
</ul>
</nav>
</footer>
<script src="Scripts/validate_signup.js"></script>
</body>
</html>