-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
183 lines (183 loc) · 5.87 KB
/
index.html
File metadata and controls
183 lines (183 loc) · 5.87 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
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Document</title>
</head>
<body>
<h1>HTML-Only: Mega Application Form</h1>
<b>Rules:</b> Use only valid inputs. All starred fields are required. Read <i>titles</i> for hints. No JavaScript.
<fieldset>
<legend>Account</legend>
<label for=""> * Username
<br>
<input type="text"></label>
<br>
<label for=""> * Password
<br>
<input type="password"></label>
<br>
<label for=""> * Applying As
<br>
<select name="" id="">
<option value="">Choose one</option>
<option value="">Student</option>
<option value="">Teacher</option>
<option value="">Working Professionals</option>
</select>
</fieldset>
<fieldset>
<legend>Personal Information</legend>
<label for=""> * Full name
<br>
<input type="text"></label>
<br>
<label for=""> * Date of birth
<br>
<input type="date"></label>
<br>
<label for=""> * Gender
<br>
<label for=""><input type="radio" name="Gender"> Female </label>
<label for=""><input type="radio" name="Gender"> Male </label>
<label for=""><input type="radio" name="Gender"> Other </label>
<br>
<label for=""> Govt ID (PAN format)
<input type="text" placeholder="ABCDE1234F"></label>
</fieldset>
<fieldset>
<legend>Contact & Address</legend>
<label for=""> * Email
<br>
<input type="email" placeholder="you@example.com"></label>
<br>
<label for=""> * Phone (India)
<br>
<input type="tel" placeholder="+91 9XXXXXXXXX"></label>
<br>
<label for=""> Portfolio URL (HTTPS only)
<br>
<input type="url" placeholder="https://example.com"></label>
<br>
<label for=""> * Country
<br>
<input type="text" placeholder="Start typing..."></label>
<br>
<label for=""> State/UT (India)
<br>
<input type="text" placeholder="eg., Maharashtra"></label>
<br>
<label for=""> PIN Code
<br>
<input type="number" placeholder="6-digit PIN"></label>
<br>
<label for=""> * Address
<br>
<input type="text" placeholder="Flat / House No, Street, Area"></label>
</fieldset>
<fieldset>
<legend>Education & Skills</legend>
<label for=""> * Highest Qualification
<br>
<select name="" id="">
<option value="">Select one</option>
<option value="">Uneducated</option>
<option value="">Pre-Schooling</option>
<option value="">Bachelors</option>
<option value="">Masters</option>
<option value="">PhD</option>
</select>
<br>
<label for=""> CGPA
<br>
<input type="number" placeholder="eg., 8.23"></label>
<br>
<label for=""> * Primary Skill
<br>
<select name="" id="">
<option value="">Pick one</option>
<option value="">C</option>
<option value="">C++</option>
<option value="">JAVA</option>
<option value="">Python</option>
</select>
<br>
<label for=""> Other Skills (choose multiple)
<br>
<select name="other skills" id="other skills" size="6" multiple>
<option value="">HTML</option>
<option value="">CSS</option>
<option value="">JavaScript</option>
<option value="">TypeScript</option>
<option value="">React</option>
<option value="">Node.js</option>
</select>
<br>
<label for=""> Quick add via datalist
<br>
<input type="text" placeholder="Start typing a skill"></label>
</fieldset>
<fieldset>
<legend>Availability & Preferences</legend>
<label for=""> * Earliest Start Date
<br>
<input type="date"></label>
<br>
<label for=""> Preferred Interview Time
<br>
<input type="time"></label>
<br>
<label for=""> Time Zone
<br>
<select name="" id="">
<option value="">Asia/Kolkata (IST)</option>
<option value="">London (GMT)</option>
<option value="">Paris (CET)</option>
<option value="">Moscow (MSK)</option>
<option value="">New York (EST)</option>
</select>
<br>
<label for=""> Brand Colour Preference
<br>
<input type="color"></label>
<br>
<label for=""> Expected CTC (Lakhs/Year)
<br>
<input type="range"></label>
<br>
<h5>(We know you want 40 😉)</h5>
</fieldset>
<fieldset>
<legend>Documents</legend>
<br>
<label for=""> * Upload Resume (PDF)
<br>
<input type="file" accept=".pdf"></label>
<br>
<label for=""> Profile Photo (JPG/PNG)
<br>
<input type="file" accept=".jpg, .png"></label>
<br>
</fieldset>
<fieldset>
<legend>Short Answers</legend>
<br>
<label for=""> * Why should we consider you?
<br>
<input type="text" placeholder="Write at least 30 characters..."></label>
<br>
<label for=""> Referral Code (pattern: ABC-1234)
<br>
<input type="text" placeholder="ABC-1234"></label>
<br>
</fieldset>
<br>
<b>▶ Optional Survey (expand)</b>
<br>
<label for=""><input type="checkbox" name="programming"> * I confirm all information is accurate and accept the terms.</label>
<br>
<button type="submit">Submit Application</button>
<button type="clear">Reset</button>
</body>
</html>