-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathindex.php
More file actions
38 lines (33 loc) · 1.27 KB
/
index.php
File metadata and controls
38 lines (33 loc) · 1.27 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
<!DOCTYPE html>
<html lang = "en">
<?php include_once 'templates/header.php' ?>
<body>
<div class="container">
<?php // Page title set depending on what's currently being displayed ?>
<h1 class="text-center" id="header-title">Last Copy in State Checker</h1>
<?php // Container for the currently displayed form ?>
<div id="form-container">
<?php
// Include forms (hidden by default)
include_once 'templates/forms/config_form.php';
include_once 'templates/forms/lastcopystate_form.php';
?>
</div>
<?php // Div used to display output ?>
<div id="output"></div>
<?php // Modal to display while loading ?>
<div class="modal fade" id="loading-dialog" role="dialog">
<div class="modal-dialog">
<div class="modal-content">
<div class="modal-body">
<div class="loader"><svg class="circular" viewBox="25 25 50 50"><circle id="loader-circle" class="path" cx="50" cy="50" r="20" fill="none" stroke-width="3" stroke-miterlimit="10"/></svg></div>
<div class="text-center" id="loading-dialog-message">
Loading...
</div>
</div>
</div>
</div>
</div>
</div>
</body>
</html>