-
Notifications
You must be signed in to change notification settings - Fork 0
/
register.html
151 lines (146 loc) · 4.38 KB
/
register.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
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
<!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>Register</title>
<style>
th {
min-width: 100px;
}
input,
label,
button {
float: left;
}
fieldset {
text-align: center;
}
.loginLink {
float: left;
}
</style>
</head>
<body>
<header>
<nav>
<center>
<table border="1px">
<tr>
<th>
<a href="index.html"
><img
src="Images/saylani-logo.png"
alt="Saylani logo"
width="150px"
/></a>
</th>
<th><a href="index.html">Home</a></th>
<th><a href="about.html">About</a></th>
<th><a href="gallery.html">Gallery</a></th>
<th><a href="media.html">Media</a></th>
<th><a href="contact.html">Contact</a></th>
<th><a href="login.html">Login</a></th>
<th><a href="register.html">Register</a></th>
</tr>
</table>
</center>
</nav>
</header>
<hr />
<center>
<h1>This is Register Page</h1>
<hr />
<h2>Please Register to Continue</h2>
<p>All fields are required.</p>
<center>
<hr />
<form action="" method="">
<fieldset style="width: fit-content">
<legend>Register</legend>
<label for="FullName">Full Name: </label><br />
<input
type="text"
id="FullName"
name="FullName"
placeholder="Full Name"
/>
<br /><br />
<label for="email">Email: </label><br />
<input
type="email"
id="email"
name="Email"
placeholder="Email Address"
/>
<br /><br />
<label for="password">Password:</label><br />
<input
type="Password"
id="password"
placeholder="Password"
name="Password"
/>
<br /><br />
<p>
<label for="Gender:">Gender:</label>
<br />
<label for="Male">Male</label>
<input type="radio" name="Gender" value="Male" id="Male" />
<label for="Female">Female</label>
<input type="radio" name="Gender" value="Female" id="Female" />
</p>
<br />
<p>
<label for="Hobbies:">Hobbies:</label>
<br />
<label for="Cricket">Cricket</label>
<input type="checkbox" name="Cricket" id="Cricket" />
<label for="Movies">Movies</label>
<input type="checkbox" name="Movies" id="Movies" />
<label for="Music">Music</label>
<input type="checkbox" name="Music" id="Music" />
</p>
<br />
<p style="text-align: left">
Country:
<br />
<select name="Country" id="Country">
<option value="" disabled selected></option>
<option value="Pakistan">Pakistan</option>
<option value="Turkey">Turkey</option>
<option value="China">China</option>
<option value="Korea">Korea</option>
<option value="Saudia">Saudi Arab</option>
<option value="America">America</option>
</select>
</p>
<br />
<p style="text-align: left">
D.O.B
<br />
<input type="Date" name="D.O.B" />
</p>
<br />
<p style="text-align: left">
Upload your Photo:
<br />
<input type="file" name="photo" id="photo" />
</p>
<br />
<button value="Register">Register</button><br /><br />
<a href="login.html" class="loginLink">Already a user?</a>
</fieldset>
</form>
</center>
</center>
<h1></h1>
<hr />
<center>
<footer>
<p>Copyright© 2021. All right reserved</p>
</footer>
</center>
</body>
</html>