Split index.html in many files smaller. New right column when the wallet is ready. Removed templates selector.
This commit is contained in:
parent
6bad4ae59d
commit
0a027360a8
28 changed files with 1394 additions and 1749 deletions
35
views/import.html
Normal file
35
views/import.html
Normal file
|
|
@ -0,0 +1,35 @@
|
|||
<div ng-controller="ImportController">
|
||||
<div data-alert class="alert-box info radius" ng-show="loading">
|
||||
<i class="size-21 fi-bitcoin-circle icon-rotate spinner"></i>
|
||||
{{ importStatus }}
|
||||
</div>
|
||||
<div ng-init="choosefile=0; pastetext=0" ng-show="!loading">
|
||||
<form name="importForm" ng-submit="import(importForm)" novalidate>
|
||||
<div class="row">
|
||||
<div class="large-6 large-centered medium-8 medium-centered columns">
|
||||
<h3>{{title}}</h3>
|
||||
<fieldset>
|
||||
<legend for="backupFile" class="m10b"> Choose backup file from your computer <i class="fi-laptop"></i></legend>
|
||||
<input type="file" class="form-control" placeholder="Select a backup file" name="backupFile" ng-model="backupFile" ng-file-select>
|
||||
</fieldset>
|
||||
</div>
|
||||
|
||||
<div class="large-6 large-centered medium-8 medium-centered columns">
|
||||
<label for="password">Password <small>Required</small></label>
|
||||
<input type="password" class="form-control" placeholder="Your wallet password" name="password" ng-model="password" required>
|
||||
</div>
|
||||
</div>
|
||||
<div class="row">
|
||||
<div class="large-6 medium-8 columns large-centered medium-centered">
|
||||
<div class="line-dashed">
|
||||
<a class="back-button" href="/signin">« Back</a>
|
||||
<button type="submit" class="button primary radius right" ng-disabled="importForm.$invalid" loading="Importing">
|
||||
Import backup
|
||||
</button>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</form>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
Loading…
Add table
Add a link
Reference in a new issue