diff options
| author | PliablePixels <pliablepixels@gmail.com> | 2015-09-15 14:41:54 -0400 |
|---|---|---|
| committer | PliablePixels <pliablepixels@gmail.com> | 2015-09-15 14:41:54 -0400 |
| commit | 2a7699ac57249422b09951cecf8f93c641634990 (patch) | |
| tree | bf9a2baa7b9ce588a3c9cd2a96234df0cacbe55a /www/templates | |
| parent | 606d3b95e941f48c8963d3996920472145da1200 (diff) | |
Fixed the colossal crap that was PIN code auth. Still need to clean up rough edges but overall looks good now
Diffstat (limited to 'www/templates')
| -rw-r--r-- | www/templates/zm-portal-login.html | 23 |
1 files changed, 20 insertions, 3 deletions
diff --git a/www/templates/zm-portal-login.html b/www/templates/zm-portal-login.html index 56d2ee2e..e65504f7 100644 --- a/www/templates/zm-portal-login.html +++ b/www/templates/zm-portal-login.html @@ -1,4 +1,21 @@ -<ion-view view-title="" style="background-color:#444444"> - <ion-content style="background-color:#444444"> +<ion-view view-title="zmNinja" hide-back-button="true" cache-view="false"> + <ion-content class="padding"> + + <div ng-if="pinPrompt"> + <div style="margin-left:10px; margin-right:10px"> + <center> + <h4>Enter PIN</h4> + <div class="pinCode"> + <input type="number" pattern="[0-9]*" ng-model="pindata.pin" ng-keyup="pinChange()" /> + </div> + <br/> {{pindata.status}} + <br/> + <button class="button button-block button-stable icon ion-unlocked" ng-click="unlock()"> Unlock + </button> + </center> + </div> + + </div> + </ion-content> - </ion-view>
\ No newline at end of file +</ion-view>
\ No newline at end of file |
