-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathgate_pass.html
72 lines (69 loc) · 2.67 KB
/
gate_pass.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Gate Pass</title>
<link rel="stylesheet" href="css/gate_pass.css">
</head>
<body>
<header>
<div class="title_box">
<img src="css/src/png college logo.png" alt="college logo" class="college_logo">
<div class="college_name">
Indian Institute of Information Technology Design & Manufacturing, Kurnool
</div>
</div>
<div class="navbar_box">
<div class="nav_items">
<div id="home" class="items">
<a href="student_home.html">Home</a>
</div>
<div id="forms" class="items">
Forms
<div class="forms_list">
<a href="gate_pass.html" class="hover_pass" id="gate_pass">Gate pass</a>
<a href="holiday_form.html" class="hover_pass">Holiday form</a>
<a href="admission_form.html" class="hover_pass">Admission form</a>
</div>
</div>
<div id="attendence" class="items">
<a href="attendence_page.html">Attendance</a>
</div>
<div id="complain" class="items">
<a href="complain_page.html">Complain</a>
</div>
</div>
<div class="profile_box">
</div>
</div>
<hr class="bottom_nav_line" color="black">
</header>
<div class="gate_pass_box">
<h1 Class="form_name">Gate Pass</h1>
<div class="pass_input">
<div class="name">
<label for="name">Name :</label>
<input type="text" id="name" placeholder="Enter your Name">
</div>
<div class="hostel_Name">
<label for="name">Hostel Name :</label>
<input type="text" id="hostel_Name" placeholder="Enter Hostel Name">
</div>
<div class="roll_no">
<label for="name">Roll no. :</label>
<input type="text" id="roll_no" placeholder="Enter Roll No">
</div>
<div class="room_no">
<label for="name">Room no. :</label>
<input type="text" id="room_no" placeholder="Enter Room no.">
</div>
<div class="purpose">
<label for="name">Purpose :</label>
<input type="text" id="purpose" placeholder="Reason for leaving">
</div>
</div>
<div class="button">Submit</div>
</div>
</body>
</html>