1
0
mirror of https://github.com/bitwarden/desktop.git synced 2024-09-16 02:17:24 +02:00

added remember option to duo

This commit is contained in:
Kyle Spearrin 2017-06-29 14:38:04 -04:00
parent 98d3da78c3
commit 8f236f76a7
2 changed files with 15 additions and 2 deletions

View File

@ -54,6 +54,19 @@
<div id="duoFrameWrapper">
<iframe id="duo_iframe"></iframe>
</div>
<div class="list">
<div class="list-section">
<div class="list-section-items">
<div class="list-section-item list-section-item-checkbox">
<label for="remember">Remember me</label>
<input id="remember" name="Remember" type="checkbox" ng-model="remember.checked">
</div>
</div>
</div>
</div>
<p class="text-accent text-center">
<a href="#" stop-click ng-click="anotherMethod()">Use another two-step login method</a>
</p>
</div>
</form>

View File

@ -497,12 +497,12 @@
#duoFrameWrapper {
background: ~"url('../../images/loading.svg') 0 0 no-repeat";
width: 100%;
height: 100%;
height: 470px;
margin-bottom: -10px;
iframe {
width: 100%;
height: 100%;
border: none;
margin-bottom: -5px;
}
}