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

50 lines
2.1 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
2022-07-06 15:04:34 +01:00
<img *ngIf="ThemeService.currentTheme == 'default' " src='assets/images/fullLogo-no-g.png' alt='logo'>
2021-10-21 15:47:00 +01:00
<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>
2021-10-28 16:59:25 +01:00
<h3 *ngIf="ThemeService.currentTheme == 'tribunal'" class="center">Tribunal Constitucional</h3>
2021-06-28 11:16:21 +01:00
<form class="form">
2021-10-28 16:59:25 +01:00
<p class="form-label">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>
2021-10-28 16:59:25 +01:00
<p class="form-label">Palavra-passe</p>
2021-06-28 11:16:21 +01:00
<ion-item class="form-input">
<ion-input (keyup.enter)="Login()" [type]="showPassword ? 'text' : 'password' " [(ngModel)]="password" name="input-password" ></ion-input>
<div (click)="togglePassword()">
<ion-icon slot="end" [name]="passwordIcon" ></ion-icon>
</div>
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">
2022-09-26 09:10:55 +01:00
<!-- <p class="msg-bottom-p">Uma iniciativa do Gabinete do Calendário Partilhado</p> -->
<p class="msg-bottom-p"> </p>
2021-06-28 11:16:21 +01:00
</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>
2022-07-04 14:08:51 +01:00