-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathadmin.php
More file actions
26 lines (25 loc) · 1.23 KB
/
admin.php
File metadata and controls
26 lines (25 loc) · 1.23 KB
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
<html>
<head>
<meta charset="UTF-8">
<title>Admin</title>
<link rel="stylesheet" href="http://maxcdn.bootstrapcdn.com/bootstrap/3.2.0/css/bootstrap.min.css">
<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.11.1/jquery.min.js"></script>
<script src="http://maxcdn.bootstrapcdn.com/bootstrap/3.2.0/js/bootstrap.min.js"></script>
<style>
body {
margin-top: 50px;
} .glyphicon { margin-right:10px; }
.panel-body { padding:0px; }
.panel-body table tr td { padding-left: 15px }
.panel-body .table {margin-bottom: 0px; }
</style>
</head>
<body>
<div class="container">
<h1>Welcome To Admin Page</h1>
<h3><a href="add_documents.php" role="button" class="btn btn-primary"><span class="glyphicon glyphicon-plus"></span> Add Documents</a></h3>
<h3><a href="remove_documents.php" role="button" class="btn btn-primary"><span class="glyphicon glyphicon-trash"></span> Remove Documents</a><br></h3>
<h3><a href="index.php" role="button" class="btn btn-primary"><span class="glyphicon glyphicon-search"></span> Start Searching</a></h3>
</div>
</body>
</html>