-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathhistory.html
67 lines (63 loc) · 2.89 KB
/
history.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
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1">
<!-- favicon -->
<link rel="icon" type="image/png" href="https://turnthebus.org//images/favicon.png">
<!-- custom styles -->
<link rel="stylesheet" href="styles.css">
<!-- bootstrap -->
<link rel="stylesheet" href="https://stackpath.bootstrapcdn.com/bootstrap/4.4.1/css/bootstrap.min.css"
integrity="sha384-Vkoo8x4CGsO3+Hhxv8T/Q5PaXtkKtu6ug5TOeNV6gBiFeWPGFN9MuhOf23Q9Ifjh" crossorigin="anonymous">
<script src="https://code.jquery.com/jquery-3.4.1.min.js"
integrity="sha256-CSXorXvZcTkaix6Yvo6HppcZGetbYMGWSFlBw8HfCJo=" crossorigin="anonymous"></script>
<script src="https://cdn.jsdelivr.net/npm/popper.js@1.16.0/dist/umd/popper.min.js"
integrity="sha384-Q6E9RHvbIyZFJoft+2mJbHaEWldlvI9IOYy5n3zV9zzTtmI3UksdQRVvoxMfooAo"
crossorigin="anonymous"></script>
<script src="https://stackpath.bootstrapcdn.com/bootstrap/4.4.1/js/bootstrap.min.js"
integrity="sha384-wfSDF2E50Y2D1uUdj0O3uMBJnjuUD4Ih7YwaYd1iqfktj0Uod8GCExl3Og8ifwB6"
crossorigin="anonymous"></script>
<title>Turn the Bus | Video Upload</title>
</head>
<body>
<nav class="navbar justify-content-between">
<a class="navbar-brand">
<img src="https://turnthebus.org/images/turn-the-bus-logo.png" />
</a>
<ul class="nav nav-pills">
<li class="nav-item">
<a class="nav-link start-pill" href="upload.html">Upload</a>
</li>
<li class="nav-item">
<a class="nav-link active end-pill" href="history.html">History</a>
</li>
</ul>
<button id="signOut" class="btn btn-link" type="submit">Sign Out</button>
</nav>
<section class="row">
<div class="col col-md"></div>
<div class="col-12 col-md-6 col- history-ctr">
<div class="contentLoaderCtr" id="historyLoader">
<div class="contentLoader"></div>
Loading History...
</div>
<div hidden id="historyContainer">
<h3 class="page-header">Video Upload History</h3>
<br>
<div hidden id="videoHistoryError" class="alert alert-danger" role="alert">
Some error while loading history data! Please try again.
</div>
<div id="videoHistoryList" class="list-group">
</div>
</div>
</div>
<div class="col col-md"></div>
</div>
<!-- custom js -->
<script src="js/vendor/aws-cognito-sdk.min.js"></script>
<script src="js/vendor/amazon-cognito-identity.min.js"></script>
<script src="js/config.js"></script>
<script src="js/cognito-auth.js"></script>
<script src="js/history.js"></script>
</body>
</html>