2020-07-15 19:51:01 +02:00
|
|
|
@model RecoverySeedBackupViewModel
|
|
|
|
@{
|
|
|
|
Layout = "_LayoutSimple";
|
2020-07-16 19:09:45 +02:00
|
|
|
ViewData["Title"] = "Your recovery phrase";
|
2020-07-15 19:51:01 +02:00
|
|
|
}
|
|
|
|
|
2021-05-19 04:39:27 +02:00
|
|
|
@section PageHeadContent {
|
|
|
|
<style>
|
|
|
|
@@media (min-width: 476px) { ol#RecoveryPhrase {max-height:16em;} }
|
|
|
|
@@media (min-width: 768px) { ol#RecoveryPhrase {max-height:12em;} }
|
|
|
|
@@media (min-width: 1200px) { ol#RecoveryPhrase {max-height:8em;} }
|
|
|
|
form#RecoveryConfirmation button { position: absolute; bottom:0; left:50%; width:200px; margin-left:-100px; }
|
|
|
|
form#RecoveryConfirmation button:not([disabled]) { display: none; }
|
|
|
|
form#RecoveryConfirmation input:checked ~ button[disabled] { display: none; }
|
|
|
|
form#RecoveryConfirmation input:checked + button:not([disabled]) { display: inline-block; }
|
|
|
|
</style>
|
2021-02-11 11:48:54 +01:00
|
|
|
}
|
|
|
|
|
2021-05-19 04:39:27 +02:00
|
|
|
@section PageFootContent {
|
|
|
|
<partial name="_ValidationScriptsPartial" />
|
|
|
|
}
|
2020-07-19 15:49:57 +02:00
|
|
|
|
2020-07-15 19:51:01 +02:00
|
|
|
<div class="row justify-content-md-center">
|
2020-07-19 15:49:57 +02:00
|
|
|
<div class="col-lg-10 text-center">
|
2020-07-15 19:51:01 +02:00
|
|
|
<partial name="_StatusMessage" />
|
|
|
|
|
2020-07-16 19:09:45 +02:00
|
|
|
<div class="d-flex flex-column align-items-center justify-content-center">
|
|
|
|
<span class="fa fa-info-circle align-self-center p-3" style="font-size:4em;"></span>
|
2020-07-15 19:51:01 +02:00
|
|
|
|
2020-07-16 19:09:45 +02:00
|
|
|
<h1 class="text-center text-primary mb-5">Secure your recovery phrase</h1>
|
|
|
|
</div>
|
|
|
|
<div class="lead text-center">
|
|
|
|
<p>
|
|
|
|
<span class="d-sm-block">The words below are called your recovery phrase.</span>
|
|
|
|
<span class="d-sm-block"><strong>Write them down on a piece of paper in the exact order.</strong></span>
|
|
|
|
</p>
|
2020-07-15 19:51:01 +02:00
|
|
|
</div>
|
2021-05-19 04:39:27 +02:00
|
|
|
<ol id="RecoveryPhrase" data-mnemonic="@Model.Mnemonic" class="my-5 d-flex flex-column flex-wrap justify-content-center align-items-center text-start p-0">
|
2020-07-15 19:51:01 +02:00
|
|
|
@foreach (var word in Model.Words)
|
|
|
|
{
|
2021-05-19 04:39:27 +02:00
|
|
|
<li class="ms-4 px-3 py-2 text-secondary" style="flex: 0 1;min-width:10em;">
|
2020-07-15 19:51:01 +02:00
|
|
|
<span class="text-dark h5">@word</span>
|
|
|
|
</li>
|
|
|
|
}
|
|
|
|
</ol>
|
2020-07-19 15:49:57 +02:00
|
|
|
<div class="lead text-center" style="max-width:36em;margin-left:auto;margin-right:auto;">
|
|
|
|
@if (Model.IsStored)
|
|
|
|
{
|
|
|
|
<p>
|
|
|
|
The recovery phrase is a backup that allows you to restore your wallet in case of a server crash.
|
|
|
|
If you lose it or write it down incorrectly, you may permanently lose access to your funds.
|
|
|
|
Do not photograph it. Do not store it digitally.
|
|
|
|
</p>
|
|
|
|
<p>
|
2020-08-05 11:20:34 +02:00
|
|
|
<strong>The recovery phrase will also be stored on the server as a hot wallet.</strong>
|
2020-07-19 15:49:57 +02:00
|
|
|
</p>
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
<p>
|
|
|
|
The recovery phrase allows you to access and restore your wallet.
|
|
|
|
If you lose it or write it down incorrectly, you will permanently lose access to your funds.
|
|
|
|
Do not photograph the recovery phrase and do not store it digitally.
|
|
|
|
</p>
|
|
|
|
<p>
|
|
|
|
<strong>The recovery phrase will permanently be erased from the server.</strong>
|
|
|
|
</p>
|
|
|
|
}
|
|
|
|
@if (!string.IsNullOrEmpty(Model.Passphrase))
|
|
|
|
{
|
|
|
|
<p class="mt-3 mb-0">Please make sure to also write down your passphrase.</p>
|
|
|
|
}
|
|
|
|
</div>
|
2020-08-05 11:20:34 +02:00
|
|
|
@if (Model.RequireConfirm)
|
|
|
|
{
|
2021-07-06 10:35:42 +02:00
|
|
|
<form id="RecoveryConfirmation" action="@Model.ReturnUrl" class="position-relative d-flex align-items-start justify-content-center" style="margin-top:4rem;padding-bottom: 80px" rel="noreferrer noopener">
|
2020-08-05 11:20:34 +02:00
|
|
|
<label class="form-check-label lead order-2" for="confirm">I have written down my recovery phrase and stored it in a secure location</label>
|
2021-06-06 13:44:54 +02:00
|
|
|
<input type="checkbox" class="mt-2 me-3 order-1 form-check-input" id="confirm">
|
2020-08-05 11:20:34 +02:00
|
|
|
<button type="submit" class="btn btn-primary btn-lg px-5 order-3" id="submit">Done</button>
|
|
|
|
<button type="submit" class="btn btn-primary btn-lg px-5 order-3" disabled>Done</button>
|
|
|
|
</form>
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
2021-07-06 10:35:42 +02:00
|
|
|
<a href="@Model.ReturnUrl" class="btn btn-primary btn-lg mt-3 px-5 order-3" id="proceed" rel="noreferrer noopener">Done</a>
|
2020-08-05 11:20:34 +02:00
|
|
|
}
|
2020-07-15 19:51:01 +02:00
|
|
|
</div>
|
|
|
|
</div>
|