Commit dc45f84a authored by Benoit Philibert's avatar Benoit Philibert

fix Mnemonic templates

parent d4a49e4f
......@@ -10,7 +10,7 @@
<p class="lead">Please enter the corresponding secret words below.</p>
<!-- /row-->
<div class="row d-flex justify-content-center">
<form class="col-md-8 col-xs-12 text-left" [formGroup]="mnemonicForm">
<form class="col-6 mx-auto text-left" [formGroup]="mnemonicForm">
<div class="form-group">
<label class="col-12 row" for="word1">Word n°4</label>
<input type="text" class="form-control" formControlName="word1" id="word1">
......
<section id="breeze">
<div class="login d-flex align-items-center text-center">
<div class="container">
<p class="textback text-left mb-5 col-11 mx-auto">
<p class="textback text-left col-11 mx-auto">
<a (click)="onBackClicked()">
<span class="ico-arrow-left2"></span>
</a>
</p>
<h3 class="display-5">Secret words</h3>
<p class="lead">Please write down your secret words and password. <br>You will need <strong>both</strong> to recover your wallet in the future.</p>
<div class="row d-flex justify-content-center my-5">
<ul *ngFor="let word of mnemonicArray; let i=index" class="list-inline list-unstyled col-xs-12 col-md-6">
<li class="list-inline-item"><span class="badge badge-default">{{ i + 1 }}. {{ word }}</span></li>
<div class="row d-flex justify-content-center mt-4">
<ul class="list-inline list-unstyled col-6 mx-auto">
<li *ngFor="let word of mnemonicArray; let i=index" class="list-inline-item">
<span class="badge badge-default">{{ i + 1 }}. {{ word }}</span>
</li>
</ul>
</div>
<div class="form-control-feedback text-center my-3">Write down your secret words and password before you continue</div>
<!-- /row-->
<div class="row d-flex justify-content-center">
<!-- <button type="button" class="btn btn-linkgray btn-lg col-12">Save the list somewhere</button> -->
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment