-
Notifications
You must be signed in to change notification settings - Fork 0
/
approvalform.html
62 lines (57 loc) · 2.38 KB
/
approvalform.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
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>UFO Finder</title>
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootswatch/3.3.7/superhero/bootstrap.min.css">
<link href="https://fonts.googleapis.com/css?family=Ubuntu" rel="stylesheet">
<link rel="stylesheet" href="static/css/style.css">
</head>
<body>
<div class="wrapper">
<nav class="navbar navbar-default">
<div class="container-fluid">
<div class="navbar-header">
<a class="navbar-brand" href="index.html">UFO Sightings
<img class="nav-ufo" src="static/images/ufo.svg">
</a>
</div>
</div>
</nav>
<div class="hero text-center">
<h1>UFO Sightings</h1>
<p>The Truth is Out There</p>
</div>
<div class="container">
<!-- <div class="row margin-top-50"></div>
<div class="col-md-2"></div> -->
<div class="panel panel-default">
<div class="panel-heading">Admin Approval form</div>
<div class="panel-body">
<!-- TO DO: Editable fields instead of table -->
<div id="table-area" class="">
<table id="approval-table" class="table table-striped">
<tbody>
</tbody>
</table>
</div>
<div style="justify-content:space-between">
<button id="approved-btn" type="submit" class="btn btn-success">Approved</button>
<button id="prev-btn" type="button" class="btn btn-default">< Previous</button>
<button id="next-btn" type="button" class="btn btn-default">Next ></button>
<button id="rejected-btn" type="submit" class="btn btn-danger">Rejected</button>
</div>
</div>
</div>
</div>
<footer class="footer">
<span class="bottom">UFO Sightings</span>
</footer>
</div>
<script src="https://cdnjs.cloudflare.com/ajax/libs/d3/4.11.0/d3.js"></script>
<script src="static/js/approvals.js"></script>
<script src="static/js/app3.js"></script>
<!-- <script src="static/js/data.js"></script> -->
</body>
</html>