-
Notifications
You must be signed in to change notification settings - Fork 0
/
ColorGame.html
50 lines (37 loc) · 1.22 KB
/
ColorGame.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
<template name = "colors">
<div class = "wrap">
<h1>Color Game Memory</h1>
<div id="ColorBox" style = "width:500px; height:200px; margin:auto; border: 5px solid darkgrey;">
</div>
<div class = "result">
{{>click}}
</div>
<div id="buttons">
<button class = "check" id = "this">Check</button>
<button class = "level1">Level 1</button>
<button class = "level2">Level 2</button>
<button class = "level3">Level 3</button>
<button class = "again">Play Again</button>
<!--
<button class = "checkme">Checkme</button>
<input type = "submit" id = "check" value = "check"/>
<input type = "submit" id = "check2" value = "check2"/>
<form action = "#" onsubmit = "start(3,1000);">
<input type = "submit" id = "level1" value = "Level 1"/>
</form>
<form action = "#" onsubmit = "start(5,800);">
<input type = "submit" id = "level2" value = "Level 2"/>
</form>
<form action = "#" onsubmit = "start(10,300);">
<input type = "submit" id = "level3" value = "Level 3"/>
</form>
-->
</div>
</div>
</template>
<template name="click">
<!--{{#each mycoll}}
{{text}}
{{/each}}-->
{{getsesh}}
</template>