forked from mcipperly/rt.trkr8r.com
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathadmin.php
More file actions
64 lines (55 loc) · 1.58 KB
/
admin.php
File metadata and controls
64 lines (55 loc) · 1.58 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
<?php include ('includes/header.php'); ?>
<div class="row interior-header">
<div class="visible-phone">
<div class="four cols sml-logo">
<img src="assets/imgs/rt-logo.png">
</div>
<div class="eight cols">
<h1>Admin</h1>
</div>
</div>
<div class="hidden-phone">
<div class="eight cols">
<h1 class="left">Admin</h1>
</div>
<div class="four cols">
<img src="assets/imgs/rt-logo_small.png" class="right">
</div>
</div>
</div>
<div class="clear"></div>
<div class="row center">
<div class="four cols">
<a href="#">
<button class="full-width">Export Today's .CSV</button>
</a>
</div>
<div class="four cols">
<a href="#">
<button class="full-width">Advanced .CSV Export</button>
</a>
</div>
<div class="four cols">
<a href="admin_log-hours.php">
<button class="full-width">Log Volunteer Hours</button>
</a>
</div>
</div>
<div class="row center">
<div class="four cols">
<a href="#">
<button class="full-width">Add Admin Accounts</button>
</a>
</div>
<div class="four cols">
<a href="#">
<button class="full-width">Print Signed Waivers</button>
</a>
</div>
<div class="four cols">
<a href="#">
<button class="full-width">Button</button>
</a>
</div>
</div>
<?php include ('includes/footer.php'); ?>