copay/views/createProfile.html

74 lines
3.2 KiB
HTML
Raw Normal View History

2014-09-30 17:16:46 -07:00
<div class="createProfile" ng-controller="CreateProfileController">
2014-10-11 10:33:45 -07:00
<div class="m30a" style="width:50%" ng-show="anyWallet && !anyProfile">
<div class="left">
<i class="size-36 fi-alert"></i>
</div>
<div>
2014-10-11 10:33:45 -07:00
Copay now needs a profile to access wallets. <br>
2014-10-11 10:33:45 -07:00
You can import current your wallets after creating your profile.
</div>
</div>
2014-09-30 17:16:46 -07:00
<div data-alert class="loading-screen" ng-show="retreiving">
<i class="size-60 fi-bitcoin-circle icon-rotate spinner"></i>
Retreiving information from storage...
</div>
<div class="row" ng-show="!loading && !retreiving">
<div class="large-4 columns logo-setup">
<img src="img/logo-negative-beta.svg" alt="Copay" width="146" height="59">
<div ng-include="'views/includes/version.html'"></div>
</div>
<div class="large-8 columns line-dashed-setup-v">
2014-10-09 14:53:31 -07:00
<div class="box-setup">
2014-09-30 17:16:46 -07:00
<h1 class="text-white line-sidebar-b" translate >Create Profile</h1>
2014-10-09 14:53:31 -07:00
<form name="profileForm" ng-submit="createProfile(profileForm)" novalidate>
<div class="row collapse">
<div class="small-12 columns">
<input type="email" ng-model="email" class="form-control"
name="email" placeholder="Email" required>
<small class="icon-input" ng-show="!profileForm.email.$invalid &&
!profileForm.email.$pristine"><i class="fi-check"></i></small>
<small class="icon-input" ng-show="profileForm.email.$invalid &&
!profileForm.email.$pristine"><i class="fi-x"></i></small>
</div>
</div>
<input id="password" type="password" ng-model="$parent.password"
class="form-control" name="password" placeholder="{{'Choose a password'|translate}}" check-strength="passwordStrength"
tooltip-html-unsafe="Password strength: <i>{{passwordStrength}}</i><br/><span class='size-12'>Tip: Use lower and uppercase, numbers and symbols</span>" tooltip-trigger="focus" required tooltip-placement="top">
<div class="pr">
<input type="password" ng-model="repeatpassword"
class="form-control" name="repeatpassword"
placeholder="{{'Repeat password'|translate}}"
match="password" required >
<small class="icon-input"
ng-show="profileForm.repeatpassword.$dirty &&
!profileForm.repeatpassword.$invalid"><i class="fi-check"></i></small>
<small class="icon-input"
ng-show="profileForm.repeatpassword.$dirty &&
profileForm.repeatpassword.$invalid"><i class="fi-x"></i></small>
<p class="m15b text-gray size-12"
ng-show="profileForm.repeatpassword.$dirty &&
profileForm.repeatpassword.$invalid">
<i class="fi-x m5r"></i>
{{'Passwords must match'|translate}}
</p>
</div>
2014-09-30 17:16:46 -07:00
<div class="text-right">
2014-10-09 14:53:31 -07:00
<a href="#!/" class="back-button text-white m20r">&laquo; <span translate>Back</span></a>
<button translate type="submit" class="button primary m0"
ng-disabled="profileForm.$invalid || loading">
2014-09-30 17:16:46 -07:00
Create
</button>
</div>
</form>
</div>
</div>
</div>
</div>