2021-04-23 10:35:53 +01:00
|
|
|
<ion-content class="text-white">
|
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-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
|
|
|
|
2023-01-24 15:56:47 +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'>
|
2023-01-24 15:56:47 +01:00
|
|
|
<img *ngIf="ThemeService.currentTheme == 'doneIt' " src='assets/images/theme/{{ThemeService.currentTheme}}/governoangola_A.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>
|
2022-10-20 16:47:43 +01:00
|
|
|
<h3 class="center text-white">Gabinete Digital</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">
|
2022-05-02 16:19:59 +01:00
|
|
|
<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"> </p>
|
2021-06-28 11:16:21 +01:00
|
|
|
</div>
|
2021-06-09 00:20:44 +01:00
|
|
|
</div>
|
|
|
|
|
</div>
|
|
|
|
|
|
2022-10-06 15:45:38 +01:00
|
|
|
<ion-icon style="width: 0px; height: 0px;" src='assets/images/theme/gov/icons-search.svg'></ion-icon>
|
|
|
|
|
<ion-icon style="width: 0px; height: 0px;" src='assets/images/icons-most-searched-words-open.svg'></ion-icon>
|
|
|
|
|
|
2021-07-22 14:40:29 +01:00
|
|
|
</ion-content>
|