-
Notifications
You must be signed in to change notification settings - Fork 0
/
list.html
112 lines (96 loc) · 4.65 KB
/
list.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
<!DOCTYPE html>
<html lang="en">
<head>
<!-- Required meta tags-->
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
<meta name="description" content="Colorlib Templates">
<meta name="author" content="Colorlib">
<meta name="keywords" content="Colorlib Templates">
<!-- Icons font CSS-->
<link href="vendor/mdi-font/css/material-design-iconic-font.min.css" rel="stylesheet" media="all">
<link href="vendor/font-awesome-4.7/css/font-awesome.min.css" rel="stylesheet" media="all">
<link href="vendor/bootstrap/css/bootstrap.min.css" rel="stylesheet" media="all">
<!-- Font special for pages-->
<link
href="https://fonts.googleapis.com/css?family=Poppins:100,100i,200,200i,300,300i,400,400i,500,500i,600,600i,700,700i,800,800i,900,900i"
rel="stylesheet">
<!-- Title Page-->
<title>search</title>
<!-- Main CSS-->
<link href="css/list.css" rel="stylesheet" media="all">
</head>
<body>
<script src="https://www.gstatic.com/firebasejs/7.5.0/firebase-app.js"></script>
<script src="https://www.gstatic.com/firebasejs/7.5.0/firebase-firestore.js"></script>
<script src="https://www.gstatic.com/firebasejs/7.5.0/firebase-storage.js"></script>
<script src="https://www.gstatic.com/firebasejs/5.9.1/firebase-auth.js"></script>
<div class="container">
<div class="card-container">
<div class="row">
<img class="logo" src="images/logo.jpg" height="150px" width="150px">
<div class="col">
<h1 class="head-text">Association of Safety and Fire Engineers</h1>
<hr>
<h2 class="head-text">Division of Safety and Fire Engineering</h2>
<hr>
<h3 class="head-text">School of Engineering, CUSAT</h3>
<button class="btn btn-success" type="button" name="button" onclick="logout()" style="float:right">Log out</button>
</div>
</div>
</div>
<div class="card-container">
<div class="row">
<h3 class="m-3">Search</h3>
</div>
<div class="row">
<div class="col-md-3">
<div class="input-group my-2">
<label class="label m-2">Name</label>
<input class="input--style-4" type="text" name="first_name" id="name">
</div>
</div>
<div class="col-md-3">
<div class="input-group my-2">
<label class="label m-2">Batch</label>
<input class="input--style-4" type="text" name="first_name" id="batch">
</div>
</div>
<div class="col-md-3">
<div class="input-group my-2">
<label class="label m-2">Company</label>
<input class="input--style-4" type="text" name="first_name" id="company">
</div>
</div>
<div class="col-md-3 px-5">
<button class="btn--blue btn--radius-2 btn" id="search">Search</button>
<div class="loader" id="loader"></div>
</div>
</div>
</div>
<div class="card-container" id="results">
<div class="row" id="row_1">
<p id="placeholder">Press the search button to have a look at our Alumini</p>
</div>
</div>
<div class="card-container" id="register">
<div class="row">
<div class="col">
<a class="btn--blue btn--radius-2 btn file-submit" href="register.html">Register</a>
<div class="loader" id="loader"></div>
</div>
</div>
</div>
</div>
</div>
<div class="footer">For any queries, contact <strong>Amal Purushu</strong> <a href="tel: 9746405844">9746405844</a></div>
<div class="footer">Developed with ❤ by Association of Computer Engineering Students, SOE</div>
<!--===============================================================================================-->
<script src="vendor/jquery/jquery-3.2.1.min.js"></script>
<!--===============================================================================================-->
<script src="vendor/bootstrap/js/bootstrap.min.js"></script>
<!-- Main JS-->
<script src="js/list.js"></script>
<script src="js/logout.js"></script>
</body>
</html>