-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
92 lines (82 loc) · 3.75 KB
/
index.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
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8" />
<title>SPD Event Picker</title>
<!-- favicons -->
<link rel="apple-touch-icon" sizes="120x120" href="favicon/apple-touch-icon.png">
<link rel="icon" type="image/png" sizes="32x32" href="favicon/favicon-32x32.png">
<link rel="icon" type="image/png" sizes="16x16" href="favicon/favicon-16x16.png">
<link rel="manifest" href="favicon/site.webmanifest">
<link rel="mask-icon" href="favicon/safari-pinned-tab.svg" color="#b30000">
<meta name="msapplication-TileColor" content="#da532c">
<meta name="theme-color" content="#ffffff">
<!-- Ubuntu Font -->
<link href="https://fonts.googleapis.com/css?family=Ubuntu" rel="stylesheet">
<!-- jQuery UI Blitzer Theme -->
<link rel="stylesheet" href="themes/jquery-ui-1.12.1-blitzer.css" />
<!-- Bootstrap CSS -->
<link rel="stylesheet" href="themes/bootstrap-3.3.7.min.css">
<link rel="stylesheet" href="eventPicker.css" />
<!-- jQuery Core 3.3.1 JS -->
<script src="jslib/jquery-3.3.1.min.js"></script>
<!-- Bootstrap JS -->
<script src="jslib/bootstrap-3.3.7.min.js"></script>
<!-- Remove jQuery Conflicts with Bootstrap -->
<script>
$.fn.bootstrapBtn = $.fn.button.noConflict();
</script>
<!-- jQuery UI 1.12.1 JS -->
<script src="jslib/jquery-ui-1.12.1.min.js"></script>
<!-- globalFunctions.js -->
<script src="jslib/globalFunctions.js"></script>
</head>
<body>
<div id="header">
<script>
verifyLogin('home');
</script>
</div>
<div class="flexbox root">
<div class="flexbox-content">
<div id="title">
<h1>Sigma Phi Delta Event Picker</h1>
</div>
<br>
<div id="images">
<img id="coat" src="images/spd_coat_of_arms.png" alt="Coat of Arms" />
<img id="logo" src="images/spd_logo.jpg" alt="Logo" />
</div>
<br>
<div class="card-row">
<div class="card left">
<p>
This web-app is designed to randomly select the desired number of people to set-up, clean-up, sober monitor, and sober drive for Sigma Phi Delta's social events. <br><br>
To begin, please login by clicking the button in the top right corner of the page. You will NOT be able to use the app without logging in first!
</p>
</div>
<div class="card right">
<p>
Once you are logged in, you can begin using the tool by visiting the links under the 'Tool' menu above. <br><br>
You can go directly to the tool by choosing 'Event Picker' or you can view, add, update, or delete the members that will be chosen randomly by choosing 'Manage Members'
</p>
</div>
</div>
<br><br>
<div class="card-row">
<div class="card">
<p>
Visit the 'About' page to read more about this web-app and it's author!
</p>
</div>
</div>
</div>
</div>
<script>
$(document).ready(function() {
$('.spdbutton').button();
insertFooter();
});
</script>
</body>
</html>