-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html.html
More file actions
208 lines (205 loc) · 7.17 KB
/
index.html.html
File metadata and controls
208 lines (205 loc) · 7.17 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
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
<!DOCTYPE html>
<html>
<head>
<title>Job Application Form</title>
</head>
<body>
<h2>TalentoLink Consultancy</h2>
<p>A joint venture of Seqtto software solution Pvt Ltd</p>
<p>H.No 2-86, BommalaRamaram (Vill & Mdl), Yadadri-Bhongiri (Dist), Telangana - 508126</p>
<P>Email:<a href="">contcat@seqtto.com</a> Contact: <a href="">+91 7670998219</a></P>
<hr>
<h1>Job Vacancy Form</h1>
<form>
<fieldset>
<legend>CompanyDetails</legend>
<label for="">Company Name:</label><br>
<input type="text" placeholder=""><br>
<label for="">Company Email:</label><br>
<input type="email" placeholder=""><br>
<label for="">Company Mobile Number:</label><br>
<input type="tel" placeholder=""><br>
<label for="">Company Type:</label><br>
<select name="" id="">
<optgroup label="Select Company Type">
<option value="">Ltd Company</option>
<option value="">Pvt Ltd Company</option>
<option value="">One Person Company</option>
<option value="">MSME</option>
<option value="">Sole Proprietorship</option>
<option value="">Educational Institutions</option>
<option value="">Financial Institutions</option>
<option value="">Charitable Trust</option>
<option value="">Others</option>
</optgroup>
</select>
</fieldset>
<fieldset>
<legend>AddressDetails</legend>
<label for="">Door No:</label><br>
<input type="text" placeholder=""><br>
<label for="">Locality:</label><br>
<input type="text" placeholder=""><br>
<label for="">PinCode:</label><br>
<input type="tel" placeholder=""><br>
<label for="">City:</label><br>
<select name="" id="">
<optgroup label="Select City">
<option value="">Hyderabad</option>
<option value="">Banglore</option>
<option value="">Vizag</option>
<option value="">Chennai</option>
<option value="">Gurgaon</option>
<option value="">Noida</option>
<option value="">Kochi</option>
<option value="">Mumbai</option>
</optgroup>
</select><br>
<label for="">State:</label><br>
<select name="" id="">
<optgroup label="Select State">
<option value="">Telangana</option>
<option value="">Andhra Pradesh</option>
<option value="">Karnataka</option>
<option value="">Tamilnadu</option>
<option value="">Maharashtra</option>
<option value="">uttar Pradesh</option>
<option value="">Haryana</option>
<option value="">Kerala</option>
</optgroup>
</select>
</fieldset>
<fieldset>
<legend>InchargeDetails</legend>
<label for="">Name of the Employee:</label><br>
<input type="text" placeholder=""><br>
<label for="">Email:</label><br>
<input type="email" placeholder=""><br>
<label for="">Contact Number:</label><br>
<input type="tel" placeholder=""><br>
<label for="">Designation:</label><br>
<select name="" id="">
<optgroup label="Select Position">
<option value="">Director</option>
<option value="">CEO</option>
<option value="">Manager</option>
<option value="">HR</option>
<option value="">Project Manager</option>
<option value="">Team lead</option>
<option value="">Other</option>
</optgroup>
</select>
</fieldset>
<fieldset>
<legend>Incharge2 Details</legend>
<label for="">Name of the Employee:</label><br>
<input type="text" placeholder=""><br>
<label for="">Email:</label><br>
<input type="email" placeholder=""><br>
<label for="">Contact Number:</label><br>
<input type="tel" placeholder=""><br>
<label for="">Designation:</label><br>
<select name="" id="">
<optgroup label="Select Position">
<option value="">Director</option>
<option value="">CEO</option>
<option value="">Manager</option>
<option value="">HR</option>
<option value="">Project Manager</option>
<option value="">Team lead</option>
<option value="">Other</option>
</optgroup>
</select>
</fieldset>
</form>
</body>
</html>