forked from jasonfyw/plismun
-
Notifications
You must be signed in to change notification settings - Fork 0
/
database.php
137 lines (85 loc) · 3.81 KB
/
database.php
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
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta name="description" content="">
<meta name="author" content="">
<link rel="shortcut icon" type="image/x-icon" href="img/plismun19_a_favicon.png">
<title>PLISMUN Database</title>
<!-- Bootstrap Core CSS -->
<link href="css/bootstrap.min.css" rel="stylesheet" type="text/css">
<!-- Fonts -->
<link href="font-awesome/css/font-awesome.min.css" rel="stylesheet" type="text/css">
<link href="css/animate.css" rel="stylesheet" />
<link href="https://cdnjs.cloudflare.com/ajax/libs/bootstrap-datepicker/1.8.0/css/bootstrap-datepicker.css" rel="stylesheet">
<!-- bootstrap select -->
<link href="css/bootstrap-select.min.css" rel="stylesheet">
<link href="css/checkboxes.css" rel="stylesheet">
<!-- recycling css from signup page because the layout is basically the same and I can't be bothered to make a new file just for this-->
<!-- <link href="css/pages/delegateapplications.css" rel="stylesheet"> -->
<link href="color/default.css" rel="stylesheet">
<!-- Global site tag (gtag.js) - Google Analytics -->
<script async src="https://www.googletagmanager.com/gtag/js?id=UA-120398250-1"></script>
<script>
window.dataLayer = window.dataLayer || [];
function gtag(){dataLayer.push(arguments);}
gtag('js', new Date());
gtag('config', 'UA-120398250-1');
</script>
</head>
<body id="page-top" data-spy="scroll" data-target=".navbar-custom">
<?php
if(isset($_SESSION['id']) && $_SESSION['position'] == 'admin')
{
?>
<div class="container" style="margin-top: 30px;">
<div class="text-center">
<h1>View User Database</h1>
</div>
</div>
<div class="row">
<div class="col-md-6 col-md-offset-3">
<hr class="marginbot-50">
</div>
</div>
<div class="container">
<div class="container">
<h1><a href="#">View committees</a></h1>
</div>
<div class="container">
<h1><a href="#">View delegations</a></h1>
</div>
<div class="container">
<h1><a href="#">View delegates</a></h1>
</div>
</div>
<?php } else { ?>
<h1 style="text-align: center; margin-top: 10%;">You do not have the valid credentials to view this page. </h1>
<?php } ?>
<!-- Core JavaScript Files -->
<script src="js/jquery.min.js"></script>
<script src="js/bootstrap.min.js"></script>
<script src="js/jquery.scrollTo.js"></script>
<!--reveal while scrolling script-->
<script src="js/wow.min.js"></script>
<!-- Custom Theme JavaScript -->
<script src="js/custom.js"></script>
<!-- parallax script -->
<script src="js/parallax.min.js"></script>
<!-- bootstrap select js -->
<script src="js/bootstrap-select.min.js"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/bootstrap-datepicker/1.8.0/js/bootstrap-datepicker.min.js"></script>
<script type="text/javascript">
// include footer
$(function() {
$("#header").load("navbar");
$("#footer").load("footer");
});
$('.datepicker').datepicker();
$(function () {
$('[data-toggle="tooltip"]').tooltip()
});
</script>
</body>
</html>