-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
78 lines (62 loc) · 2.48 KB
/
index.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
<!DOCTYPE html>
<html>
<head>
<title>Faculty Leave Management</title>
</head>
<body>
<header>
<h1>Faculty Leave Management</h1>
<link rel="stylesheet" type="text/css" href="index.css">
</header>
<nav>
<ul>
<li><a href="home.html">Home</a></li>
<li><a href="index.html">Apply for Leave</a></li>
<li><a href="index1.html">Check Leave Status</a></li>
<li><a href="home.html">Contact Us</a></li>
</ul>
</nav>
<main>
<h3>Apply for Leave</h3>
<p>To apply for leave, please fill out the following form:</p>
<form>
<label for="name">Name:</label>
<input type="text" id="name" name="name"><br><br>
<label for="department">Department:</label>
<select id="dept-type" name="dept-type">
<option value="ai">Artificial Intelligence</option>
<option value="auto">Automobile Engineering</option>
<option value="it">Information Technology</option>
<option value="cse">Computer Science and Engineering</option>
<option value="ece">Electronics and Communication Engineering</option>
<option value="eee">Electrical and Electronic Engineering</option>
<option value="ei">Electronics and Instrumentation Engineering</option>
<option value="csd">Computer System and Design</option>
<option value="ft">Food Technology</option>
<option value="ch">Chemical Engineering</option>
<option value="mech">Mechanical Engineering</option>
<option value="mts">Mechatronics Engineering</option>
<option value="civil">Civil Engineering</option>
</select><br><br>
<!-- <input type="text" id="department" name="department"><br><br> -->
<label for="leave-type">Leave Type:</label>
<select id="leave-type" name="leave-type">
<option value="sick-leave">Sick Leave</option>
<option value="vacation-leave">Vacation Leave</option>
<option value="personal-leave">Personal Leave</option>
</select><br><br>
<label for="start-date">Start Date:</label>
<input type="date" id="start-date" name="start-date"><br><br>
<label for="end-date">End Date:</label>
<input type="date" id="end-date" name="end-date"><br><br>
<label for="reason">Reason:</label><br>
<textarea id="reason" name="reason" rows="5" cols="50"></textarea><br><br>
<input type="submit" value="Submit">
<input type="reset" value="Reset">
</form>
</main>
<footer>
<p>Contact us: kecfaculty.leave.management@example.com</p>
</footer>
</body>
</html>