mail/src/tpl/login-initial.html

37 lines
1.5 KiB
HTML

<div class="view-login view-login-initial" ng-class="{'waiting-cursor': state.ui === 3}">
<div class="logo">
<img src="img/whiteout_logo.svg" alt="whiteout.io">
</div><!--/logo-->
<div class="content">
<div ng-show="state.ui === 1">
<p><b>PGP key.</b> You can either import an existing PGP key or generate a new one. Your private key remains on your device and is not sent to our servers.</p>
<form>
<div class="option terms">
<input type="checkbox" ng-model="state.agree" id="cb-agree">
<label for="cb-agree">I agree to the Whiteout Networks <a href="https://whiteout.io/terms.html" target="_blank">Terms of Service</a> and have read the <a href="https://whiteout.io/privacy-service.html" target="_blank">Privacy Policy</a>.</label>
</div>
<div class="option newsletter">
<input type="checkbox" ng-model="state.newsletter" id="cb-newsletter">
<label for="cb-newsletter">Stay up to date on Whiteout Networks products and important announcements.</label>
</div>
<div>
<button wo-touch="importKey()" class="btn btn-alt">Import existing key</button>
<button type="submit" wo-touch="generateKey()" class="btn"tabindex="3">Generate new key</button>
</div>
</form>
</div>
<div ng-show="state.ui === 2">
<p><b>Generating key.</b> Please stand by. This can take a while...</p>
<div class="working">
<span class="spinner"></span>
</div><!--/.working-->
</div>
</div><!--/content-->
</div>