root / src / app / teachers / teachers.component.html @ f3d5fa3b
Historique | Voir | Annoter | Télécharger (2,44 ko)
1 |
<ActionBar>
|
---|---|
2 |
<!--
|
3 |
Use the NavigationButton as a side-drawer button in Android
|
4 |
because ActionItems are shown on the right side of the ActionBar
|
5 |
-->
|
6 |
<NavigationButton ios:visibility="collapsed" icon="res://menu" (tap)="onDrawerButtonTap()"></NavigationButton> |
7 |
<!--
|
8 |
Use the ActionItem for IOS with position set to left. Using the
|
9 |
NavigationButton as a side-drawer button in iOS is not possible,
|
10 |
because its function is to always navigate back in the application.
|
11 |
-->
|
12 |
<ActionItem icon="res://menu" android:visibility="collapsed" (tap)="onDrawerButtonTap()" ios.position="left"> |
13 |
</ActionItem>
|
14 |
<Label text="Enseignants"></Label> |
15 |
</ActionBar>
|
16 |
|
17 |
<ScrollView>
|
18 |
<GridLayout class="page__content"> |
19 |
<StackLayout row="0" orientation="vertical" padding="5"> |
20 |
<TextView row="1" editable="false" text="Vous pouvez créer votre album de publication. Le mot de passe de gestion de l'album vous permettra de modifier le contenu d'un album (suppression d'un fichier par exemple). Et le mot de passe (facultatif) d'accès à l'album en lecture permet de sécuriser un album dans lequel vous auriez des photos des enfants par exemple..." class="label"></TextView> |
21 |
<Label row="2" text="Nom de l'album à créer (sans accents ni caractères spéciaux)" class="label font-weight-bold m-b-5"></Label> |
22 |
<TextField row="3" [text]='album' id="album" keyboardType="email" hint="Nom de l'album" secure="false" returnKeyType="next" autocorrect="false" maxLength="20" class="-primary" (blur)="onBlur($event)"></TextField> |
23 |
<Label row="4" text="Entrez un mot de passe d'accès à l'album" class="label font-weight-bold m-b-5"></Label> |
24 |
<TextField row="5" [text]='albumPass' id="albumPass" keyboardType="email" hint="Mot de passe" secure="false" returnKeyType="next" autocorrect="false" maxLength="50" class="-primary" (blur)="onBlur($event)"></TextField> |
25 |
<Label row="6" text="Entrez un mot de passe de gestion de l'album" class="label font-weight-bold m-b-5"></Label> |
26 |
<TextField row="7" [text]='albumPassAdmin' id="albumPassAdmin" keyboardType="email" hint="Mot de passe de gestion" secure="false" returnKeyType="send" autocorrect="false" maxLength="50" class="-primary" (blur)="onBlur($event)"></TextField> |
27 |
<Button row="8" id="btnSave" text="Enregistrer" (tap)='onSaveTap($event)' padding="10" class="-primary"></Button> |
28 |
</StackLayout>
|
29 |
</GridLayout>
|
30 |
</ScrollView>
|