forked from ChoiceCoin/Voting
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
36 lines (28 loc) · 938 Bytes
/
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
<!DOCTYPE html>
<html>
<head>
<link rel="stylesheet" href="style.css" />
</head>
<body>
<div class="container">
<div class="first">
<h4>Choice-Coin</h4>
<button class="connect" type="submit">Connect Wallet</button>
</div>
<div class="second">
<input type="number" placeholder="choice coin amount" />
</div>
<div class="third">
<h4>#ISSUE NUMBER</h4>
</div>
<div class="rand-btn">
<input type="button" class="true" value="YES" />
<input type="button" class="false" value="NO" />
</div>
<div class="submit">
<input type="submit" value="Submit Vote" />
</div>
</div>
<script src="script.js"></script>
</body>
</html>