-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsform.html
90 lines (88 loc) · 1.97 KB
/
sform.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
<html>
<head>
<title> form </title>
<style>
div {
width: 500px;
border: 10px solid white;
padding: 0px;
margin: 30px;
background: #ADD8E6;
}
</style>
</head>
<body background= "C:\Users\taman\Desktop\html project\bg1.jpg">
<center>
<form action="C:\Users\taman\Desktop\html project\message.html" method="POST">
<div>
<p>
<h1 align = "center"> Club Registration Form Form </h1>
<label> Title </label>
<label>
<input type="radio" name = "Title" value = "mr">
Mr
</label>
<label>
<input type = "radio" name = "Title" value="mrs">
Mrs
</label>
<label>
<input type = "radio" name = "Title" value = "miss">
Miss
</label>
</p>
<p>
<label> First Name </label>
<input type = "text" placeholder = "first_name" required>
</p>
<p>
<label> Last name </label>
<input type = "text" placeholder = "last_name">
</p>
<p>
<label> DOB </label>
<input type = "date" placeholder = "DOB" required>
</p>
<p>
<label> Email </label>
<input type = "email" placeholder = "email" required>
</p>
<p>
<label> Phone Number </label>
<input type = "tel" placeholder = "phone" required>
</p>
<p>
<label> Address </label>
<textarea maxlength="100" rows = "1" cols = "5" required></textarea>
</p>
<p>
<label> Sports </label>
<select required>
<option> Select </option>
<option> Voleyball </option>
<option> Football </option>
<option> Badminton </option>
<option> Swimming </option>
</select>
</p>
<p>
<label> Password </label>
<input type="password" placeholder="password" required>
</p>
<p>
<label> Confirm password </label>
<input type = "password" placeholdeer = "password_confirm" required>
</p>
<p>
<p>
<label>
<input type = "checkbox" value = "terms" required>
I agree to the <a href = "C:\Users\taman\Desktop\html project\Term and Conditions.docx"> terms and conditions </a>
</label>
</p>
<button style = "background-color:pink;>
<p>
<input type = "submit" value="Submit" onclick="saveFile()"> Submit</p></button>
</form> </center>
</div>
</html>