-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
136 lines (132 loc) · 5.97 KB
/
index.html
File metadata and controls
136 lines (132 loc) · 5.97 KB
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
<html>
<head>
<title>Samarpaṇa Run Registration</title>
<link rel="stylesheet" href="style1.css">
</head>
<body>
<div>
<header class="header-banner">
<h1 id="heading">Samarpana Run</h1>
<p class="head-content">For the Indian Army!</p>
<p class="head-content" id="datetime"></p>
</header>
</div>
<h2 class="form-title">Registration Form</h2>
<div class="form">
<form id="registrationForm">
<div class="form-contents">
<label class="form-ele" for="fullName">Full Name *</label>
<input type="text" class="form-ele" placeholder="e.g. Aanya Rao" name="fullName" required>
</div>
<div class="form-contents">
<label class="form-ele" for="Email">Email*</label>
<input type="email" class="form-ele" placeholder="e.g. aanya@college.edu" name="Email" required>
</div>
<div class="form-contents">
<label class="form-ele" for="Mobile_no">Mobile Number *</label>
<input type="text" class="form-ele" id="Mobile_no" placeholder="e.g. 9876543210" maxlength="10" name="Mobile_no" required>
</div>
<div class="form-contents">
<label class="form-ele" for="DoB">Date of Birth </label>
<input type="date" class="form-ele" placeholder="e.g. dd/mm/yy" name="DoB" >
</div>
<div class="form-contents">
<label class="form-ele" for="Uni/Org">University/Organization *</label>
<input type="text" class="form-ele" placeholder="e.g. PES University" name="Uni/Org" required>
</div>
<div class="form-contents">
<label class="form-ele" for="USN">USN *</label>
<input type="text" class="form-ele" placeholder="e.g. PES1UG24CS999" name="USN" required>
</div>
<div class="form-contents">
<label class="form-ele" for="City">City </label>
<input type="text" class="form-ele" placeholder="e.g. Bengaluru" name="City" >
</div>
<div class="form-contents">
<label class="form-ele" for="State">State</label>
<input type="text" class="form-ele" placeholder="e.g. Karnataka" name="State">
</div>
<div class="form-contents">
<label class="form-ele" for="Pincode">Pincode</label>
<input type="text" class="form-ele" placeholder="e.g. 560085" maxlength="6" id="Pincode" name="Pincode" >
</div>
<div class="form-contents">
</div>
<div class="t-shirt-info">
<label for="tshirtSize">T-shirt Size *</label>
<select id="tshirtSize" name="tshirtSize" required>
<option value="" selected disabled>Select size</option>
<option value="XS">XS</option>
<option value="S">S</option>
<option value="M">M</option>
<option value="L">L</option>
<option value="XL">XL</option>
<option value="XXL">XXL</option>
<option value="3XL">3XL</option>
</select>
</div>
<div class="size-chart">
<table>
<tr>
<th>Size</th>
<th>Chest (in)</th>
<th>Chest (cm)</th>
<th>Length (cm)</th>
</tr>
<tr>
<td>XS</td>
<td>34"</td>
<td>86cm</td>
<td>65cm</td>
</tr>
<tr>
<td>S</td>
<td>36"</td>
<td>91cm</td>
<td>67cm</td>
</tr>
<tr>
<td>M</td>
<td>38"</td>
<td>97cm</td>
<td>70cm</td>
</tr>
<tr>
<td>L</td>
<td>40"</td>
<td>102cm</td>
<td>72cm</td>
</tr>
<tr>
<td>XL</td>
<td>42"</td>
<td>107cm</td>
<td>75cm</td>
</tr>
<tr>
<td>XXL</td>
<td>44"</td>
<td>112cm</td>
<td>77cm</td>
</tr>
<tr>
<td>3XL</td>
<td>46"</td>
<td>117cm</td>
<td>79cm</td>
</tr>
</table>
</div>
<div class="form-contents checkbox">
<input type="checkbox" id="confirm" name="confirm" required>
<label id="checkbox-label" for="confirm">I confirm the information is accurate and agree to the event terms and waiver.</label>
</div>
<div class="form-actions">
<button type="reset" class="btn reset-btn">Reset Form</button>
<button type="submit" class="btn submit-btn">Submit Form</button>
</div>
</form>
</div>
<script src="script1.js"></script>
</body>
</html>