forked from StevenAb/BEARS
-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.ejs
48 lines (37 loc) · 1.44 KB
/
index.ejs
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>BEARS</title>
<link rel="stylesheet" type="text/css" href="styles/main.css">
<link rel="stylesheet" type="text/css" href="src/font-awesome.css">
<script src="https://use.fontawesome.com/26aebfa83b.js"></script>
</head>
<body>
<nav class="bigbluefish">
<div>
<a id="name" href="/">BEARS</a>
<a id="signup" href="login.html">Log Out</a>
<form name="submit" action="/delete" method="post">
<!-- <input id="submit" type="button" value="Delete All Transcripts" style="float: right">-->
<!-- <a id="" href="/"><input id="Delete All Transcripts" type="submit"></a>-->
<form action="/">
<!-- <input id="submit" type="submit">-->
<a id="submit" href="/"><input id="submit" type="submit" value="Delete All Transcripts" style="float: right"></a>
</form>
</form>
</div>
</nav>
<div id="head">
<h1>Transcripts</h1>
</div>
<div id="refresh">
<a id="re" href="/"><i class="fa fa-repeat" aria-hidden="true"></i></a>
</div>
<% for (var i = id.length - 1; i > 0; i--) {%>
<div class="transcript bigbluefish">
<h1><span><%= id[i].date%></span></h1>
<p><span><%= id[i].transcript%></span></p>
</div>
<%} %>
</body>
</html>