jce-mobile-app/www/templates/settings.html
Sagi Dayan d80c2661a1 Added Settings and UI tweaks
Now you can lock the grade page with your password.
still needs some work for unlocking  - there should be a
password prompt
2015-01-13 02:14:24 +02:00

47 lines
1.4 KiB
HTML

<ion-view view-title="הגדרות" >
<ion-content>
<div class="page-content">
<h1><i class="icon ion-gear-a"></i> הגדרות</h1>
<div class="settings">
<ul class="list">
<li class="item item-toggle item-left" ng-repeat="setting in settings">
{{ setting.text }}
<label class="toggle toggle-assertive">
<input type="checkbox" ng-model="setting.val" ng-click="toggled()">
<div class="track">
<div class="handle"></div>
</div>
</label>
</li>
</ul>
</div>
<h1><i class="icon ion-information-circled"></i> אודות</h1>
<div class="list card">
<div class="item item-avatar">
<img src="https://fbcdn-profile-a.akamaihd.net/hprofile-ak-xpa1/v/t1.0-1/c16.0.64.64/p64x64/1898249_10152059274973813_1153483747_n.jpg?oh=a3836094e541464767bf5f623c7d5ce1&oe=552EAFC8&__gda__=1429284441_35e1b5c5b693fb41e8a5d79935c57496">
<h2>שגיא דיין</h2>
<p>מפתח ראשי</p>
</div>
<div class="item item-body">
<!-- <img class="full-image" src="delorean.jpg"> -->
<p>
התוכנה נוצרה למען הסטודנטים.
</p>
<p>
כל הקוד זמין בgithub <i class="icon ion-social-github"></i> - וכך גם הוראות הבניה והקימפול.
<br>הרישיון של תוכנה זו היא כדלקמן: "עשה מה שבא לך - לא מעניין אותי"
</p>
</div>
</div>
</ion-content>
</ion-view>