mail/src/tpl/login-existing.html

19 lines
838 B
HTML
Raw Normal View History

2013-10-22 05:10:18 -04:00
<div class="view-login view-login-existing">
2014-06-16 09:04:06 -04:00
<div class="logo">
<img src="img/whiteout_logo.svg" alt="whiteout.io">
2013-10-21 12:50:19 -04:00
</div><!--/logo-->
2013-10-21 07:10:42 -04:00
<div class="content">
<p><b>Unlock mailbox.</b> Please enter your passphrase to unlock the mailbox.</p>
2013-10-21 12:50:19 -04:00
<form>
<div>
2014-09-23 09:41:37 -04:00
<input class="input-text" type="password" ng-model="passphrase" ng-change="change()" ng-class="{'input-text--error':incorrect}" placeholder="Passphrase" tabindex="1" focus-me="true">
2013-10-21 12:50:19 -04:00
</div>
2014-06-10 08:30:19 -04:00
<a href="https://whiteout.io/revocation.html" title="Click here to reset your account." target="_blank">Forgot your passphrase?</a>
2013-10-21 12:50:19 -04:00
<div>
<button type="submit" wo-touch="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-->
</div>