Sagi Dayan
d80c2661a1
Now you can lock the grade page with your password. still needs some work for unlocking - there should be a password prompt
23 lines
665 B
HTML
23 lines
665 B
HTML
<ion-modal-view>
|
|
<ion-header-bar>
|
|
<h1 class="title">הגיליון נעול</h1>
|
|
<div class="buttons">
|
|
<button class="button button-clear" ng-click="closeAouth()">סגור</button>
|
|
</div>
|
|
</ion-header-bar>
|
|
<ion-content>
|
|
<div class="page-content">
|
|
<form ng-submit="Aouth()">
|
|
<div class="list">
|
|
<label class="item item-input">
|
|
<span class="input-label">סיסמה</span>
|
|
<input type="password" ng-model="lock.password">
|
|
</label>
|
|
<label class="item">
|
|
<button class="button button-block button-positive" type="submit">לציונים!</button>
|
|
</label>
|
|
</div>
|
|
</form>
|
|
</div>
|
|
</ion-content>
|
|
</ion-modal-view>
|