forked from rawatchunnilal/Ocs
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathSelect_user.html
95 lines (94 loc) · 3.35 KB
/
Select_user.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Document</title>
<link rel="stylesheet" type="text/css" href="css/bootstrap.css" />
<link rel="stylesheet" type="text/css" href="css/bootstrap-theme.css" />
<link rel="stylesheet" type="text/css" href="css/style_select_user.css" />
<link rel="stylesheet" type="text/css" href="css/responsive.css" />
</head>
<body>
<div class="container-fluid">
<div class="container headertop">
<div class="title">
<h1 class="BIT_name">Bajaj Institute of Technology, Wardha</h1>
</div>
<div class="title">
<h2>Online Clearance System</h2>
<div class="line"></div>
<p>Select User Type</p>
</div>
<div class="container">
<div class="row logins">
<div
class="col-md-4 col-sm-6 d-flex justify-content-center align-items-center login"
>
<a href="login_student.html"
><img
src="images/student.png"
alt="student"
class="img-fluid"
style="height: 50%; width: 50%; margin-left: 25%"
/></a>
<a href="login_student.html"
><p style="text-align: center; font-size: larger">Student</p></a
>
</div>
<div
class="col-md-4 col-sm-6 d-flex justify-content-center align-items-center login"
>
<a href="login_incharge.html"
><img
src="images/incharge.png"
alt="student"
class="img-fluid"
style="height: 50%; width: 50%; margin-left: 25%"
/></a>
<a href="login_incharge.html"
><p style="text-align: center; font-size: larger">
Incharge
</p></a
>
</div>
<div
class="col-md-4 col-sm-6 d-flex justify-content-center align-items-center login"
>
<a href="login_incharge.html"
><img
src="images/accountant1.png"
alt="student"
class="img-fluid"
style="height: 50%; width: 50%; margin-left: 25%"
/></a>
<a href="login_incharge.html"
><p style="text-align: center; font-size: larger">
Accountant
</p></a
>
</div>
<!-- <div
class="col-md-4 col-sm-6 d-flex justify-content-center align-items-center login"
>
<a href="#"
><img
src="images/principal-icon-24.jpg"
alt="student"
class="img-fluid"
style="height: 50%; width: 50%; margin-left: 25%"
/></a>
<a href=""
><p style="text-align: center; font-size: larger">
Principal
</p></a
>
</div> -->
</div>
</div>
</div>
</div>
</body>
<script type="text/javascript" src="js/jquery-3.7.1.min.js"></script>
<script type="text/javascript" src="js/bootstrap.js"></script>
</html>