-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmathrace.html
More file actions
53 lines (51 loc) · 1.67 KB
/
mathrace.html
File metadata and controls
53 lines (51 loc) · 1.67 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
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
<head>
<title>New Page</title>
<meta name="viewport" content="width=device-width">
<link rel="stylesheet" href="https://djyhxgczejc94.cloudfront.net/frameworks/bootstrap/3.0.0/themes/white-plum/bootstrap.min.css">
</head>
<body>
{{> race}}
</body>
<template name="race">
<div class="container">
<div class="row">
<div class="col-md-12">
<div class="panel panel-default">
<div class="panel-heading">MathRace
{{#if currentUser}}
{{loginButtons align="right"}}
{{/if}}
</div>
{{#if currentUser}}
<ul class="list-group">
{{#each players}}
<li class="list-group-item">
<img src="//graph.facebook.com/{{username}}/picture" width="48"
class="col-sm-offset-{{position}}"/>
</li>
{{/each}}
</ul>
{{else}}
<h1>Join the revolution</h1>
<h2>Get smart or get last</h2>
{{loginButtons align="right"}}
{{/if}}
<div class="panel-footer">
<a id="btn-join" class="btn btn-primary">Join race</a>
{{#if juan}}
<a id="btn-reset" class="btn btn-primary">Reset</a>
{{/if}}
<form>
<div class="form-group">
<label class="control-label">How much is 4x4?</label>
<div class="controls">
<input id="answer" type="text" class="form-control">
</div>
</div>
</form>
</div>
</div>
</div>
</div>
</div>
</template>