jce-mobile-app/www/templates/loginPage.html

32 lines
1.2 KiB
HTML

<div >
<div class="page-content">
<ion-header-bar>
<h1 class="title">התחבר</h1>
<div class="buttons">
<button class="button button-clear" ng-click="closeApp()">סגור</button>
</div>
</ion-header-bar>
<ion-content>
<center>
<div style="width: 30%; height: 30%">
<img src="https://camo.githubusercontent.com/796c0e156ff48c9985296e03d55017f8adefd154/687474703a2f2f6c6972616e62672e6769746875622e696f2f4a63654d616e616765722f6173736574732f696d616765732f6c6f676f2e706e67" alt="" style="width: 100%">
</div>
</center>
<form ng-submit="doLogin()">
<div class="list">
<label class="item item-input">
<span class="input-label">שם משתמש</span>
<input type="text" ng-model="loginData.username">
</label>
<label class="item item-input">
<span class="input-label">סיסמה</span>
<input type="password" ng-model="loginData.password">
</label>
<label class="item">
<button class="button button-block button-positive" type="submit">התחבר</button>
</label>
</div>
</form>
</div>