-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathAvailability.html
More file actions
45 lines (31 loc) · 970 Bytes
/
Availability.html
File metadata and controls
45 lines (31 loc) · 970 Bytes
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Availability</title>
</head>
<body>
<h2> Availability</h2>
<form>
<div>
<label for="startdate"> Start date: </label>
<input type="date" id="startdate" name="Start date">
</div>
<br>
<div>
<label for="PreferredWorkHours"> Preferred work hours</label>
<input type="time" id="PreferredWorkHours" name=" Preferred work hours">
</div>
<br>
<div>
<label> Preferred work loaction </label>
<label for="Remote"> Remote </label>
<input type="radio" id="Remote" name="PreferredWorkLocation" value="Remote">
<label for="On-site"> On-site </label>
<input type="radio" id="On-site" name="PreferredWorkLocation" value="On-site">
<label for="Hybrid"> Hybrid </label>
<input type="radio" id="Hybrid" name="PreferredWorkLocation" value="Hybrid">
</div>
</form>
</body>
</html>