-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex_admin.php
More file actions
78 lines (62 loc) · 1.77 KB
/
index_admin.php
File metadata and controls
78 lines (62 loc) · 1.77 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
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
<?php
require_once('MainClass.php');
?>
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title> Home | Login </title>
<link rel="stylesheet" href="./Font-Awesome-master/css/all.min.css">
<link rel="stylesheet" href="./css/bootstrap.min.css">
<script src="./js/jquery-3.6.0.min.js"></script>
<script src="./js/popper.min.js"></script>
<script src="./js/bootstrap.min.js"></script>
<script src="./Font-Awesome-master/js/all.min.js"></script>
<style>
html,body{
height:100%;
width:100%;
}
main{
height:100%;
display:flex;
flex-flow:column;
}
</style>
</head>
<body>
<main>
<nav class="navbar navbar-expand-lg navbar-light bg-warning bg-gradient" id="topNavBar">
<div class="container">
<a class="navbar-brand" href="#">Moodle - APU</a>
</div>
</nav>
<div class="container py-3" id="page-container">
<div class="row justify-content-center">
<div class="col-lg-5 col-md-8 col-sm-12 col-xs-12">
<div class="card shadow rounded-0">
<div class="card-body py-4">
<h1>Welcome Admin </h1>
<hr>
<p>You are logged in </p>
<div class="form-group text-cneter">
<input type="button" value="Register a User" onclick="location='registration.php'" />
<hr>
<input type="button" value="View Logs" onclick="location='LOGdisplay.php'" />
<hr>
<input type="button" value="View Complaints" onclick="location='complaindisplay.php'" />
</div>
<div class="clear-fix mb-4"></div>
<div class="text-end">
<a href="./logout.php" class="btn btn btn-secondary bg-gradient rounded-0">Logout</a>
</div>
</div>
</div>
</div>
</div>
</div>
</main>
</body>
</html>