forked from ALEXO-30/electrum-web
-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
103 lines (81 loc) · 4.21 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
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
<!DOCTYPE html>
<html lang=en>
<head>
<title>Electrum Bitcoin Wallet</title>
<meta charset=utf-8 />
<meta name=description content="Lightweight Bitcoin Client" />
<meta name=keywords content="electrum,bitcoin,blockchain,lightweight,instant" />
<!--<meta name=viewport content="width=device-width, initial-scale=1.0" />-->
<!--[if lt IE 9]>
<script type="text/javascript" src="//html5shiv.googlecode.com/svn/trunk/html5.js"></script>
<![endif]-->
<!-- Styles -->
<link rel="stylesheet" type="text/css" href="css/screen.css" />
<!-- /Styles -->
<!-- Links -->
<link rel="shortcut icon" href="favicon.ico" />
<link rel=apple-touch-icon-precomposed href=.png />
<link rel=author type=text/plain href=humans.txt>
<!-- /Links -->
<!-- Analytics -->
<!-- /Analytics -->
<!-- js -->
<script src=https://ajax.googleapis.com/ajax/libs/jquery/1/jquery.min.js></script>
<script>
$(document).ready(function(){
$('#translations').load('langs_nav.html #langs_main');
$('#nav').load('langs_nav.html #nav_en');
});
</script>
<!-- /js -->
</head>
<body>
<!--<div class="alert"><p><span class="info-icon"></span><small>alert message <a href="#" target="_blank"><em>read more</em></a></small></p></div>-->
<header>
<div class="container">
<nav id=translations>
<!-- langs -->
</nav>
<nav id=nav>
<!-- nav -->
<!-- DON'T MODIFY for translations, use 'langs_nav.html' as explained in the README file -->
<ul id=nav_en class=nav>
<li><a href="index.html">Home</a></li>
<li><a href="download.html">Download</a></li>
<li><a href="documentation.html">Documentation</a></li>
<li><a href="community.html">Community</a></li>
</ul>
<!-- /DON'T MODIFY end -->
</nav>
<div class=header>
<i id=electrum_logo><img src="media/electrum_logo.png" alt="Electrum" border="none" width="70" align="top" /></i>
<div id=logo><span><h1>Electrum</h1></span></div>
<h2>Lightweight Bitcoin Client</h2>
</div>
</div>
</header>
<section class="container">
<figure style="text-align:center;"><img src="media/splash_electrum_gui.png" alt="Electrum" border="none"/></figure>
<br />
<p style="margin:0 auto; padding:0 100px; text-align:center;">Electrum is an easy to use Bitcoin wallet. It protects you from losing coins in a backup mistake or computer failure, because your wallet can be recovered from a secret phrase that you can write on paper or learn by heart. There is no waiting time when you start the client, because it does not download the Bitcoin blockchain.</p>
<br />
<p style="text-align:center;"><a href="#features" class="button">Why Electrum?</a></p>
<br /><br />
<h3 id="features">Features:</h3>
<ul>
<li>Instant on: Your client does not download the blockchain. It uses a network of specialized <a href="http://electrum.qc.to/">servers</a> that index the blockchain.</li>
<li>Forgiving: Your wallet can be recovered from a secret <a href="seed.html">seed</a>.</li>
<li>Safe: Your seed and private keys are encrypted on your hard drive. They are never sent to the servers.</li>
<li>Low trust: Information received from the servers is verified using <a href="https://en.bitcoin.it/wiki/Thin_Client_Security#Header-Only_Clients" target="_blank">SPV</a>. Servers are authenticated using SSL</li>
<li>No downtimes: Your client is not tied to a particular server; it will switch instantly if your server is down.</li>
<li>Ubiquitous: You can use the same wallet on different computers, they will synchronize automatically.</li>
<li>Cold Storage: Sign transactions from a computer that is always offline. Broadcast them using a machine that does not have your keys.</li>
<li>Reachable: You can export your private keys into other Bitcoin clients.</li>
<li>Established: Electrum is open source and was first released in November 2011.</li>
</ul>
<br />
<h3>User interfaces</h3>
<p>Electrum has several user interfaces, that share the same wallet code: Classic (Qt), Lite, Gtk, Android, Text (using curses). Go to <a href="screenshots.html">screenshots</a> to see some examples</p>
</section><!-- /container -->
</body>
</html>