openethereum/js/packages/dapp-accounts/CreateAccount/recoveryPage.ejs

49 lines
1.2 KiB
Plaintext
Raw Normal View History

2016-11-30 19:48:10 +01:00
<!DOCTYPE html>
<html lang="en">
<head>
<title>Recovery phrase for <%= name %></title>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width">
<style>
body {
2016-11-30 20:42:22 +01:00
margin: 2em auto;
2016-11-30 19:48:10 +01:00
max-width: 30em;
padding: 1em;
text-align: center;
font-size: 110%;
font-family: sans-serif;
font-weight: 300;
}
2016-11-30 20:42:22 +01:00
#logo {
max-width: 4rem;
margin-bottom: 3rem;
}
2016-11-30 20:10:29 +01:00
p {
margin-bottom: 1rem;
}
figure {
margin-bottom: 1rem;
}
figure.address img {
border-radius: 100%;
2016-11-30 19:48:10 +01:00
}
pre code {
display: inline-block;
text-align: center;
white-space: normal;
line-height: 1.3;
}
</style>
</head>
<body>
2016-11-30 20:42:22 +01:00
<img id="logo" src="<%= logo %>" alt="Parity Logo" />
2016-11-30 20:10:29 +01:00
<p>This is your account <em><%= name %></em>:</p>
<figure class="address">
2016-11-30 20:42:22 +01:00
<img src="<%= identity %>" alt="symbol for the address of the account" />
2016-11-30 20:10:29 +01:00
<figcaption><code><%= address %></code></figcaption>
</figure>
<p>This is the recovery phrase:</p>
2016-11-30 19:48:10 +01:00
<pre><code><%= phrase %></code></pre>
</body>
</html>