forked from dudeofea/ratt-signal
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathratt-signal.html
31 lines (27 loc) · 906 Bytes
/
ratt-signal.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
<head>
<title>ratt-signal</title>
</head>
<body>
{{> ratt}}
</body>
<template name="ratt">
<h1>The Ratt Signal</h1>
<img src="img/{{light_image}}">
<p>
<form class="nameForm">
<input type="text" name="name" id="nameField" placeholder="What's your name?">
<input type="submit" class="ghost-button" value="{{activate_status}} the Ratt Signal">
</form>
</p>
<p>{{user_count}} Users Ratt'ed Out</p>
<ul>
{{#each user_list}}
<li><p>{{name}} {{format_date time}}</p></li>
{{/each}}
</ul>
<footer>
<div class="footer">
<p>Built by: <a href="https://github.com/dudeofea">Denis</a>, <a href="https://github.com/linster">Stefan</a>, <a href="https://github.com/Jtfinlay">James</a> and <a href="https://github.com/eyesniper2">Nathan</a></p>
</div>
</footer>
</template>