mail/src/tpl/login-existing.html

22 lines
656 B
HTML
Raw Normal View History

2013-10-22 05:10:18 -04:00
<div class="view-login view-login-existing">
2013-10-21 12:50:19 -04:00
<div class="logo-wrapper">
<div class="logo"></div>
</div><!--/logo-->
2013-10-21 07:10:42 -04:00
<div class="content">
2013-10-21 12:50:19 -04:00
<h1>Unlock mailbox</h1>
<p>Please enter your passphrase to unlock the mailbox.</p>
<form>
<div>
<input type="password" ng-model="passphrase" ng-change="change()" ng-class="{error:incorrect}" placeholder="Passphrase" tabindex="1" focus-me="true">
2013-10-21 12:50:19 -04:00
</div>
<div>
<button type="submit" ng-click="confirmPassphrase()" class="btn" data-icon="&#xe009;" ng-disabled="!buttonEnabled" tabindex="2">Unlock</button>
2013-10-21 12:50:19 -04:00
</div>
</form>
</div><!--/content-->
2013-10-21 07:10:42 -04:00
</div>