forked from Chaine-de-Blocs/v0.blocs.fr
-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
71 lines (70 loc) · 3.16 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
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>Génère ton adresse Bitcoin !</title>
<meta name="description" content="Générateur d'adresses Bitcoin selon ce qu'on souhaite ce quels caractères elle doit contenir" />
<meta name="author" content="Blocs" />
<meta name="keywords" content="Blockchain, Cryptomonnaie, Bitcoin, Monero, Lisk, YouTube, Chaîne de bloc" />
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<script src="./bower_components/kjur-jsrsasign/jsrsasign-all-min.js" type="text/javascript"></script>
<script src="./lib/Base58/Base58.js" type="text/javascript" charset="utf-8"></script>
<script src="./index.js" type="text/javascript"></script>
<link rel="shortcut icon" type="image/png" href="../assets/img/favicon.png"/>
<link href="https://fonts.googleapis.com/css?family=Roboto" rel="stylesheet">
<link rel="stylesheet" href="../font-awesome-4.7.0/css/font-awesome.min.css">
<link rel="stylesheet" href="./style.css" />
</head>
<body>
<header>
<h1>Générateur d'adresses Bitcoin</h1>
<span class="center"><a href="./faq.html">(Qu'est ce que c'est ?)</a></span>
</header>
<section>
<div class="card" id="form">
<h2>Etape 1 : spécifie quel type d'adresse Bitcoin tu souhaites</h2>
<form id="pattern-form">
<div class="group">
<input type="text" name="pattern" onkeyup="onPatternChange(event)" maxlength="26" required />
<span class="highlight"></span>
<span class="bar"></span>
<label>Mot que tu souhaites avoir dans ton adresse</label>
</div>
<small>Ton adresse devrait ressembler à <strong id="addr-preview">1QLbz7JHiBTspS962RLKV8GndWE</strong></small><br />
<button onclick="generate(event, 5)" class="btn" type="button"><span>Générer</span></button>
<button onclick="stop(event)" class="btn red" type="button"><span>Stop</span></button>
</form>
<!-- <p>
Temps approximatif : <span id="approx-time"></span>
</p>
<p>
Temps écoulé : <span id="timer"></span>
</p> -->
</div>
<div class="card" id="result">
<h2>Etape 2 : ton ordinateur calcule les adresses et te proposera une adresse conforme avec sa clé privée</h2>
<div class="group">
<input type="text" value="" id="address" readonly />
<label>Adresse publique trouvée</label>
</div>
<div id="privkey" class="group">
<input type="password" value="" onclick="this.select();" readonly />
<label>Clé privée associée</label>
<a href="#" onclick="showPrivKey(event)">Afficher la clé privée</a>
</div>
</div>
</section>
<footer>
<div>
<a href="https://www.youtube.com/channel/UCjvOu6faxxmqE6ZHTLR5qmw?view_as=subscriber" target="_blank"><i class="fa fa-youtube fa-2x"></i></a> - <a href="https://github.com/Chaine-de-Blocs/blocs.github.io/tree/master/vangen" target="_blank"><i class="fa fa-github fa-2x"></i></a>
</div>
<div id="donation">
<p>Si tu aimes ce petit projet, contribue en faisant un petit don à l'adresse ci-dessous</p>
<p><strong>1BLoCSiMsDPtza55ZdtqjnPdvFfTHhpHaM</strong></p>
</div>
<div id="copyright">
<span>Blocs © 2018</span>
</div>
</footer>
</body>
</html>