-
Notifications
You must be signed in to change notification settings - Fork 0
/
reg.html
51 lines (40 loc) · 1.31 KB
/
reg.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
<!DOCTYPE html>
<html>
<head>
<title>Registation Form</title>
</head>
<body>
<form method="GET">
Frist name : <input type="text" name="frist_name"><br>
Last name : <input type="text" name="last_name"><br>
Email : <input type="text" name="email" required><br>
Password : <input type="password" name="password" minlength="5" required><br>
Birthday: <input type="date" name="birthday"><br>
Gender:<br>
<input type="radio" name="gender" value="male"> Male <br>
<input type="radio" name="gender" value="femal"> Femal <br>
<input type="radio" name="gender" value="other"> Other <br>
Course:<br>
<select name="course">
<option value="graphich_design" name="graphich_design"> Grahiich Design</option>
<option value="web_design" name="web_design"> Web Design</option>
<option value="degital_marketing" name="degital_marketing"> Digital Marketing</option>
</select> <br>
Condition : <br>
<input type="checkbox" name="yes"> Yes. Iam Agree.<br>
<input type="checkbox" name="no">No. Iam not Agree. <br>
<input type="submit" value="Sing UP">
<input type="reset" name="Reste">
<a href="index.html"><h2>Go Home</h2></a>
</form>
</body>
</html>
f
?
frist_name=Ali+Ahmed
&last_name=Chowdhury
&email=alikhanctg%40gmail.com
&password=adsd
&birthday=2019-10-26
&male=on
&submit=Sing+UP3