-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
48 lines (46 loc) · 1.74 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
<!DOCTYPE html>
<html>
<head>
<title>Roster - work in progress</title>
<meta charset="utf-8">
<meta name="robots" content="noindex, nofollow">
<meta name="viewport" content="width=device-width">
<meta name="theme-color" content="#116466">
<link rel="stylesheet" href="ext/normalize.css">
<link rel="stylesheet" href="ext/jquery-ui.css">
<link rel="stylesheet" href="roster.css">
<script src="ext/jquery.min.js"></script>
<script src="ext/jquery-ui.min.js"></script>
<script src="roster.js"></script>
</head>
<body>
<div id="headerframe">
<div id="header" class="aquilafont">
<div class="header-text"><span class="roster-type">people</span> roster</div>
<div id="headermenu" class="header-button menu-button">
<div class="header-menu menu-content">
<div id="headermenu-list"></div>
<a class="header-menu-admin menu-item" href="admin.html">add new</a>
</div>
</div>
</div>
</div>
<div id="main-body">
<div id="roster-list">
<h3 class="loading">Loading</h3>
</div>
</div>
<div id="add-person-popup" class="add-popup">
<div class="popup-header"><div>Select a new <span class="roster-type">person</span> <input type="text" placeholder="Search" id="search-input"></div></div>
<div class="popup-person-list">
<div id="search-person-list"></div>
</div>
</div>
<div id="footerframe">
<div id="footer_tagline">
<div id= footer_logo><img src="images/logo_acme_dark_small.png" height="60px"></div>
<div class="aquilafont">ACME-Tech, making your job as painless as possible<br></div>
</div>
<div id="footer_corp">ACME-Tech is part of the ACME-group<br />Astro Carrera Maxima Expertis</div>
</div>
</body>