diff options
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 |
