-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathvote-confirmation.html
62 lines (62 loc) · 2.45 KB
/
vote-confirmation.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<title>Democracy Earth : incoruptible governance for small and large communities. A global common of peer.</title>
<link href="https://bootswatch.com/paper/bootstrap.min.css" rel="stylesheet" media="screen" type="text/css">
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/font-awesome/4.6.1/css/font-awesome.min.css">
<link href="css/style.css" rel="stylesheet" media="screen" type="text/css">
<link href="https://fonts.googleapis.com/css?family=Source+Sans+Pro:300,400,700,400italic" rel="stylesheet" type="text/css">
<script src="script.js"></script>
</head>
<body>
<!-- page content -->
<nav class="navbar navbar-default navbar-static-top">
<div class="container">
<ul class="nav navbar-nav">
<li><a href="index.html"><img src="assets/olive-spaced.png" width="25" height="25">Democracy Earth Foundation</a></li>
</ul>
<!-- <ul class="nav navbar-nav navbar-right">
<li><a href="login.html">LOGIN</a></li>
<li><a href="signup.html">SIGN UP</a></li>
</ul> -->
<ul class="nav navbar-nav navbar-right">
<li><a href=""><img src="assets/satoshi.png" class="img-circle satoshi" width="30" height="30"></a></li>
<li><a href="">SATOSHI</a></li>
</ul>
</div>
</nav>
<section class="center">
<div>
<center>
<img src="assets/vote-confirmation.png">
<h2><span style="color:#00C091">Thank you for participating.</span></h2>
<p></p>
<h2>Your vote has been counted and is being processed by a 21 computer and will be later written on Bitcoin Blockchain.</h2>
<br>
<!-- <img src="assets/progress-bar.png" class="img-responsive"> -->
<div id="myProgress">
<div id="myBar"></div>
</div>
<br>
<a class="btn btn-inactive" href="blockchain-confirmation.html">See blockhain transaction</a>
</center>
<div>
</section>
<script>
window.onload = function move() {
var elem = document.getElementById("myBar");
var width = 1;
var id = setInterval(frame, 10);
function frame() {
if (width >= 100) {
clearInterval(id);
} else {
width++;
elem.style.width = width + '%';
}
}
}
</script>
</body>
</html>