-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
38 lines (34 loc) · 1.37 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
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<!--
Bandmaster
index.php
authors: David Lordan, Paul Karcher, Dean Marsinelli
last updated: 5/1/2015
This page serves as the account creation and login
landing page for the application.
-->
<link rel="icon" type="image/png" sizes="32x32" href="assets/img/favicon-32x32.png">
<link rel="icon" type="image/png" sizes="96x96" href="assets/img/favicon-96x96.png">
<link rel="icon" type="image/png" sizes="16x16" href="assets/img/favicon-16x16.png">
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.4/css/bootstrap.min.css">
<link rel="stylesheet" type="text/css" href="login_assets/cosmo.css">
<link rel="stylesheet" type="text/css" href="login_assets/login.css">
<script src="http://ajax.googleapis.com/ajax/libs/jquery/1.11.1/jquery.min.js"></script>
<script src="login_assets/login.js"></script>
</head>
<body>
<!-- Containers for background images. The front image is faded away to reveal the back imaage. -->
<div id='backImages'></div>
<div id='frontImages'></div>
<!-- Container for various login messages. -->
<div class="container">
<div class="row row-centered">
<div id='loginContainer' class="col-xs-6 col-centered col-fixed">
</div>
</div>
</div>
</body>
</html>