mail/src/tpl/login-existing.html

31 lines
1.5 KiB
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>
<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-12-04 08:47:04 -05:00
<span class="popover-info" data-icon-append="&#xe010;" popover="#passphrase-info"></span>
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" 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-->
</div>
2013-10-21 12:50:19 -04:00
2013-12-04 08:47:04 -05:00
<!-- popovers -->
<div id="passphrase-info" class="popover right" ng-controller="PopoverCtrl">
<div class="arrow"></div>
<div class="popover-title"><b>What is this?</b></div>
<div class="popover-content">
2014-04-03 13:28:55 -04:00
<p>A passphrase is like a password that protects your PGP key.</p>
2013-12-04 08:47:04 -05:00
<p>There is no way to access your messages without your passphrase.</p>
<p>If you have forgotten your passphrase, please request an account reset by sending an email to <b>support@whiteout.io</b>. You will not be able to read previous messages after a reset.</p>
</div>
</div><!--/.popover-->