-
Notifications
You must be signed in to change notification settings - Fork 13
/
admin_portal.html
74 lines (62 loc) · 3.32 KB
/
admin_portal.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<link rel="stylesheet" href="css/admin_portal.css">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/4.7.0/css/font-awesome.min.css">
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.3.1/jquery.min.js"></script>
<script type="text/javascript" src="js/admin_portal.js">
</script>
<title>Library Management System</title>
</head>
<body>
<!-- logout button -->
<div >
<button class="BUTTON" id="log_button">LogOut</button>
</div>
<div class=main_header>
<div class="image_user">
<!-- user image -->
<svg xmlns="http://www.w3.org/2000/svg" x="0px" y="0px"
width="75" height="75"
viewBox="0 0 192 192"
style=" fill:#000000;"><g fill="none" fill-rule="nonzero" stroke="none" stroke-width="1" stroke-linecap="butt" stroke-linejoin="miter" stroke-miterlimit="10" stroke-dasharray="" stroke-dashoffset="0" font-family="none" font-weight="none" font-size="none" text-anchor="none" style="mix-blend-mode: normal"><path d="M0,192v-192h192v192z" fill="none"></path><path d="M96,192c-53.01934,0 -96,-42.98066 -96,-96v0c0,-53.01934 42.98066,-96 96,-96v0c53.01934,0 96,42.98066 96,96v0c0,53.01934 -42.98066,96 -96,96z" fill="#cccccc"></path><g fill="#666666"><g id="surface1"><path d="M96,40.32c-15.38812,0 -27.84,12.45188 -27.84,27.84c0,15.38813 12.45188,27.84 27.84,27.84c15.38813,0 27.84,-12.45187 27.84,-27.84c0,-15.38812 -12.45187,-27.84 -27.84,-27.84zM75.3375,105.7875c-26.29031,7.96594 -35.0175,29.58 -35.0175,29.58v16.3125h111.36v-16.3125c0,0 -8.72719,-21.61406 -35.0175,-29.58c-1.44094,10.14094 -10.14094,18.0525 -20.6625,18.0525c-10.52156,0 -19.22156,-7.91156 -20.6625,-18.0525z"></path></g></g></g></svg>
<h4>My Profile</h4>
</div>
<div class="heading">
<h1 id="portal">Online Library (Admin) Portal</h1>
</div>
</div>
<hr>
<!-- admin login -->
<!-- search -->
<form class="Search" id="Students_search">
<input type="text" id="search-bar" placeholder="Search Students">
<a href="#"><img class="search-icon" src="http://www.endlessicons.com/wp-content/uploads/2012/12/search-icon.png"></a>
<button id="show_students">Show all Students</button>
</form>
<form class="Search" id="Books_search">
<input type="text" id="search-bar" placeholder="Search Books">
<a href="#"><img class="search-icon" src="http://www.endlessicons.com/wp-content/uploads/2012/12/search-icon.png"></a>
<button id="show_books">Show all Books</button>
</form>
<div>
<!-- big box -->
<div class="main_user_block" id="Result">
<ul id="users">
</ul>
<ul id="books">
</ul>
</div>
<div>
<button class="BUTTON" id="add_book_button" onclick="location.href='add_book.html'">Add Books</button>
</div>
<div>
<button class="BUTTON" id="buy_book" onclick="location.href='buy_book.html'">Buy Books</button>
</div>
</div>
<script src="https://www.gstatic.com/firebasejs/6.0.2/firebase-app.js"></script>
<script defer src="https://www.gstatic.com/firebasejs/6.0.2/firebase-firestore.js"></script>
<script defer src="https://www.gstatic.com/firebasejs/6.0.2/firebase-auth.js"></script>
</body>
</html>