41 lines
1.6 KiB
HTML
41 lines
1.6 KiB
HTML
<div class="home" ng-controller="HomeController">
|
|
|
|
<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="large-12 medium-6 medium-centered columns" ng-show="!loading && !retreiving">
|
|
<div class="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="box-setup">
|
|
<h1 translate >Sign in to <b> Copay </b></h1>
|
|
<form name="loginForm" ng-submit="openProfile(loginForm)" novalidate>
|
|
<input type="email" ng-model="email" class="form-control"
|
|
name="email" placeholder="Email" required>
|
|
<input type="password" ng-model="password" class="form-control"
|
|
name="password" placeholder="Password" required>
|
|
|
|
<div class="text-right">
|
|
<button translate type="submit" class="button primary radius expand m0"
|
|
ng-disabled="loginForm.$invalid || loading">
|
|
Sign in
|
|
</button>
|
|
</div>
|
|
</form>
|
|
<div class="box-setup-footer">
|
|
<div class="left">
|
|
<a translate class="button-setup text-gray" href="#!/createProfile"><i class="m5r
|
|
size-14 fi-torso"></i>Create a profile</a>
|
|
</div>
|
|
<div class="right m5t">
|
|
<a class="right size-12 text-gray" href="#!/settings"><i class="m5r
|
|
size-14 fi-wrench"></i><span translate>Settings</span></a>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
|
|
|