-
Notifications
You must be signed in to change notification settings - Fork 0
/
requestform.html
161 lines (150 loc) · 6.38 KB
/
requestform.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
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Request form</title>
<link rel="stylesheet" href="https://stackpath.bootstrapcdn.com/bootstrap/4.3.1/css/bootstrap.min.css" >
<link rel="stylesheet" href="fontawesome/css/all.min.css"> <!-- https://fontawesome.com/ -->
<link href="https://fonts.googleapis.com/css2?family=Source+Sans+Pro&display=swap" rel="stylesheet"> <!-- https://fonts.google.com/ -->
<link href="css/bootstrap.min.css" rel="stylesheet">
<link href="css/templatemo-xtra-blog.css" rel="stylesheet">
<link rel="stylesheet" type="text/css" href="style.css">
</head>
<body>
<header class="tm-header" id="tm-header">
<div class="tm-header-wrapper">
<button class="navbar-toggler" type="button" aria-label="Toggle navigation">
<i class="fas fa-bars"></i>
</button>
<div class="tm-site-header">
<img src="img/logo.png" alt="logo" class ="logo img-center">
</div>
<h4 class="student-details">
CB.EN.U4CSE17108
</h4>
<nav class="tm-nav" id="tm-nav">
<ul>
<li class="tm-nav-item"><a href="student-homepage.html" class="tm-nav-link">
<i class="fas fa-home"></i>
Student Home
</a></li>
<li class="tm-nav-item"><a href="view-attendance.html" class="tm-nav-link">
<i class="fas fa-plus"></i>
View attendance
</a></li>
<li class="tm-nav-item active"><a href="requestform.html" class="tm-nav-link">
<i class="fas fa-list"></i>
Request OD
</a></li>
</ul>
</nav>
</div>
</header>
<div id="form" class="container-fluid">
<p id="head"></p>
<div class="container">
<header>
<h1>Request Form</h1>
</header>
<div class="theForms">
<form method="POST" action="#">
<label>Date</label>
<input id="abs" class="abs" type="date" name="abs" required>
<p id="p5"></p> <br>
<label>Number of the Period</label>
<select required name="period" id="period" class="period">
<option>Please Choose</option>
<option value="1">1</option>
<option value="2">2</option>
<option value="3">3</option>
<option value="4">4</option>
<option value="5">5</option>
<option value="6">6</option>
</select>
<p id="p6"></p> <br>
<label>Name of the Faculty</label>
<select required name="faculty" id="faculty" class="faculty">
<option>Please Choose</option>
<option value="dr">Vamsi</option>
<option value="ns">Radhika</option>
<option value="ss">Priya</option>
<option value="ar">Arun</option>
</select><br><br>
<label for="leave">Choose the type of leave</label>
<select required name="leave" id="leave" class="leave">
<option>Please Choose</option>
<option value="ML">Medical Leave</option>
<option value="OD">On Duty</option>
<option value="Other">Other</option>
</select>
<p id="p7"></p>
<br>
<label>State Your Reason for Leave</label>
<input id="reason" class="reason" type="text" name="reason" required><br>
<p id="p8"></p> <br>
<input type="submit" class="submit" name="submit" value="Submit"/>
</form>
</div>
</div>
</div>
</body>
</html>
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, maximum-scale=1.0, minimum-scale=1.0, initial-scale=1.0">
<title>Request form</title>
<link rel="stylesheet" type="text/css" href="style.css">
</head>
<body>
<div id="form">
<p id="head"></p>
<div class="container">
<header>
<h1>Request Form</h1>
</header>
<div class="theForms">
<form method="POST" action="#">
<label>Date</label>
<input id="abs" class="abs" type="date" name="abs" required>
<p id="p5"></p> <br>
<label>Number of the Period</label>
<select required name="period" id="period" class="period">
<option>Please Choose</option>
<option value="1">1</option>
<option value="2">2</option>
<option value="3">3</option>
<option value="4">4</option>
<option value="5">5</option>
<option value="6">6</option>
</select>
<p id="p6"></p> <br>
<label>Name of the Faculty</label>
<select required name="faculty" id="faculty" class="faculty">
<option>Please Choose</option>
<option value="dr">Vamsi</option>
<option value="ns">Radhika</option>
<option value="ss">Priya</option>
<option value="ar">Arun</option>
</select><br><br>
<label for="leave">Choose the type of leave</label>
<select required name="leave" id="leave" class="leave">
<option>Please Choose</option>
<option value="ML">Medical Leave</option>
<option value="OD">On Duty</option>
<option value="Other">Other</option>
</select>
<p id="p7"></p>
<br>
<label>State Your Reason for Leave</label>
<input id="reason" class="reason" type="text" name="reason" required><br>
<p id="p8"></p> <br>
<input type="submit" class="submit" name="submit" value="Submit"/>
</form>
</div>
</div>
</div>
</body>
</html>