forked from zogs/komodo
-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
71 lines (66 loc) · 4.35 KB
/
index.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
68
69
70
71
<html lang="fr">
<head>
<meta charset="UTF-8">
<meta name='viewport' content="width=device-width,user-scalable=no, initial-scale=1,maximum-scale=1,user-scalable=0" />
<meta name='apple-mobile-web-app-capable' content="yes" />
<meta name='apple-mobile-we-app-status-bar-style' content="black-translucent" />
<link rel="stylesheet" href="dist/tour.css"></style>
</head>
<body onload="loaded()">
<div class="header">
<span><i id="fps"></i> fps</span>
</div>
<div id="canvas-container">
<div class="dialog" id="secu1"><h1>SECURITY</h1> Recycling bitcoin hashrate !</div>
<div class="dialog" id="dialog-AC">
<form action="" id="form-AC">
<div class="row"><label class="label" for="name">Name</label><input type="text" name="name" value="NameOfYourAsset"></div>
<div class="row">
<label class="label">Logo</label>
<label class="choice"><input type="radio" name="logo" value="chameleon" checked> <img src="dist/images/icon/chameleon.png"></label>
<label class="choice"><input type="radio" name="logo" value="wolf"> <img src="dist/images/icon/wolf.png"></label>
<label class="choice"><input type="radio" name="logo" value="snail"> <img src="dist/images/icon/snail.png"></label>
<label class="choice"><input type="radio" name="logo" value="penguin"> <img src="dist/images/icon/penguin.png"></label>
<label class="choice"><input type="radio" name="logo" value="unicorn"> <img src="dist/images/icon/unicorn.png"></label>
</div>
<div class="row"><label class="label" for="supply">Supply</label><input type="text" name="supply" value="100000"></div>
<div class="row"><label class="label" for="rewards">Rewards</label><input type="text" name="rewards" value="10"></div>
<div class="row"><label class="label" for="halving">Halving</label><input type="text" name="halving" value="777"></div>
<div class="row">
<label class="label" for="consensus">Consensus</label>
<select name="consensus">
<option value="POW">Proof-of-Work</option>
<option value="POS">Proof-of-Stake</option>
<option value="BOTH">Mix of the two</option>
</select>
</div>
<div class="row">
<label class="label" for="privacy">Privacy</label>
<select name="privacy">
<option value="0">Only transparent</option>
<option value="1">Only z-address</option>
<option value="0" selected>Both allowed</option>
</select>
</div>
<div class="row">
<label class="label">Smart Contracts</label><br>
<label class="choice"><input type="checkbox" name="cc_dice" value="dice"><img src="dist/images/icon/dice.png"></label>
<label class="choice"><input type="checkbox" name="cc_asset" value="asset"><img src="dist/images/icon/asset.png"></label>
<label class="choice"><input type="checkbox" name="cc_reward" value="reward"><img src="dist/images/icon/reward.png"></label>
<label class="choice"><input type="checkbox" name="cc_oracle" value="oracle"><img src="dist/images/icon/oracle.png"></label>
<label class="choice"><input type="checkbox" name="cc_faucet" value="faucet"><img src="dist/images/icon/faucet.png"></label>
<label class="choice"><input type="checkbox" name="cc_cog" value="cog"><img src="dist/images/icon/cog.png"></label>
</div>
<small style="font-size: 12px; color:#2f6767; text-align:center;">(some examples of possible customizations...)</small>
</form>
</div>
<canvas id="canvas" width="1500" height="800"><!-- dont touch the dimension, it is use to calculate the proportion --></canvas>
<canvas id="backcanvas" width="1500" height="800"><!-- dont touch the dimension, it is use to calculate the proportion --></canvas>
</div>
<div class="footer">
<span>This is a draft. This version is not ready for distribution and is still in active developement.</span><br>
<span>Made by Pumtchak - contact: [email protected] - Tip (KMD) : RUFXowtPTh4sXiKrkHxvdXsTPQGifhLwA3</span>
</div>
</body>
<script src="dist/tour.js"></script>
</html>