-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathp1.html
103 lines (56 loc) · 2.05 KB
/
p1.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
92
93
94
95
96
97
98
99
100
101
102
103
<!DOCTYPE html>
<html>
<head>
<title>register</title>
<link rel="stylesheet" href="stylesheet.css">
<script type="text/javascript" src="sheet.js"> </script>
</head>
<script src="one.js"></script>
<body onload="startTime()" >
<nav class="topnav">
<a href="p4.html">Home</a>
<a href="category.html">Categories</a>
<a href="bestsellers.php">Best Sellers</a>
<a href="newRelease.php">New Releases</a>
<a href="p3.html">Contact</a>
<a href="about2.html">About</a>
<a href="p2.html">Login</a>
<a href="p1.html">Register</a>
<span style="margin-left: 550px;"id="txt">
</span>
</nav>
<br>
<br>
<h1 align="center";>Register</h1>
<div class ="form1" >
<form action="signup.php" method="post" >
<label>User Name</label>
<input type="text" name="username" placeholder="Enter Username"required>
<label>First Name</label>
<input type="text" name="firstName" placeholder="Enter first name"required>
<label>Last Name</label>
<input type="text" name="lastName" placeholder="last name"required>
<label>password</label>
<input type="password" name="conpassword" placeholder="password"required>
<label> confirm password</label>
<input type="password" name="password" placeholder="password"required>
<label>Email</label>
<input type="email" name="email" placeholder="email"required>
<label>Gender</label>
<select name="gender"required>
<option value="male">Male</option>
<option value="female">Female</option>
<option value="other">Other</option>
</select>
<label>Age:</label>
<input type="number" name="age" value="0"required>
<input type="submit" name="submit" value="Submit">
<input type="reset" ></input>
</form>
</div>
</bodyonload="document.registration.userid.focus();">
<footer class ="topnav">
<a href="privacypolicy.html">Privacy Policy</a>
<a href="terms.ofuse.html">Terms of Use</a>
</footer>
</html>