Files
doneit-web/src/app/pages/login/login.page.html
T

44 lines
1.9 KiB
HTML
Raw Normal View History

2021-04-23 10:35:53 +01:00
<ion-content class="text-white">
2021-07-02 09:29:01 +01:00
2021-06-09 00:20:44 +01:00
<div class="main-wrapper">
2021-08-27 13:39:52 +01:00
<div class="wrapper">
2021-06-09 15:13:56 +01:00
2021-06-28 11:16:21 +01:00
<div class="bg-1 d-flex justify-center align-center">
<div class="bg-2 d-flex justify-center align-center">
<div class="bg-3 d-flex justify-center align-center">
<div class="bg-4 d-flex justify-center align-center">
<div class="div-logo">
2021-10-27 15:10:55 +01:00
2021-10-21 15:47:00 +01:00
<img *ngIf="ThemeService.currentTheme == 'default' " src='assets/images/fullLogo.png' alt='logo'>
<img *ngIf="ThemeService.currentTheme == 'gov' " src='assets/images/theme/gov/governoangola_A.png' alt='logo'>
2021-10-27 15:10:55 +01:00
<img *ngIf="ThemeService.currentTheme == 'tribunal'" src='assets/images/theme/tribunal/tribunal-constitucional-logo.png' alt='logo'>
2021-10-21 15:47:00 +01:00
2021-06-28 11:16:21 +01:00
</div>
2021-06-09 15:13:56 +01:00
</div>
</div>
</div>
</div>
2021-10-27 15:10:55 +01:00
<h3 *ngIf="ThemeService.currentTheme != 'tribunal'"class="center text-white">Gabinete Digital</h3>
<h3 *ngIf="ThemeService.currentTheme == 'tribunal'" class="center text-white">Tribunal Constitucional</h3>
2021-06-28 11:16:21 +01:00
<form class="form">
2021-07-22 14:40:29 +01:00
<p class="form-label text-white">Email</p>
2021-06-28 11:16:21 +01:00
<ion-item class="form-input">
<ion-input type="text" [(ngModel)]="username" name="input-username"></ion-input>
</ion-item>
<p class="form-label text-white">Palavra-passe</p>
<ion-item class="form-input">
<ion-input (keyup.enter)="Login()" type="password" [(ngModel)]="password" name="input-password" ></ion-input>
2021-07-22 14:40:29 +01:00
</ion-item>
2021-06-28 11:16:21 +01:00
<div class="d-flex pt-25">
2021-10-27 15:10:55 +01:00
<button class="btn-ok btn-login" fill="clear" expand="block" shape="round" (click)="Login()">Iniciar a sessão</button>
2021-07-22 14:40:29 +01:00
</div>
2021-06-28 11:16:21 +01:00
</form>
<div class="msg-bottom d-flex">
<p class="msg-bottom-p">Uma iniciativa do Gabinete do Presidente da República</p>
</div>
2021-06-09 00:20:44 +01:00
</div>
2021-05-28 14:41:56 +01:00
2021-06-09 00:20:44 +01:00
</div>
2021-07-22 14:40:29 +01:00
</ion-content>