GUACAMOLE-96: Handle enrollment via QR code for unconfirmed users.

This commit is contained in:
Michael Jumper
2017-11-20 14:01:39 -08:00
parent 8ac8fec478
commit 170a11bf2a
7 changed files with 465 additions and 11 deletions

View File

@@ -1,3 +1,13 @@
<div class="totp-code-field">
<input type="text" ng-model="model" autocorrect="off" autocapitalize="off"/>
<!-- QR Code (if available) -->
<div class="totp-qr-code" ng-show="field.qrCode">
<img ng-src="{{field.qrCode}}">
</div>
<!-- Field for entry of the current TOTP code -->
<div class="totp-code">
<input type="text" ng-model="model" autocorrect="off" autocapitalize="off"/>
</div>
</div>