mirror of
https://code.equilibrium.co.ao/ITO/doneit-web.git
synced 2026-04-19 13:02:56 +00:00
47 lines
2.1 KiB
HTML
47 lines
2.1 KiB
HTML
<ion-content class="text-white">
|
|
<div class="main-wrapper">
|
|
<div class="wrapper">
|
|
<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">
|
|
|
|
<img *ngIf="ThemeService.currentTheme == 'default' " src='assets/images/donit.jpg' alt='logo'>
|
|
<img *ngIf="ThemeService.currentTheme == 'gov' " src='assets/images/theme/gov/governoangola_A.png' alt='logo'>
|
|
<img *ngIf="ThemeService.currentTheme == 'doneIt' " src='assets/images/doneit.jpg' alt='logo'>
|
|
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
<!-- <h3 class="center text-white">doneIT</h3> -->
|
|
<h3 class="center text-white">Gabinete Digital</h3>
|
|
<form class="form">
|
|
<p class="form-label">Email</p>
|
|
<ion-item class="form-input">
|
|
<ion-input class="cy-email" type="text" [(ngModel)]="username" name="input-username"></ion-input>
|
|
</ion-item>
|
|
<p class="form-label">Palavra-passe</p>
|
|
<ion-item class="form-input">
|
|
<ion-input class="cy-password" (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>
|
|
</ion-item>
|
|
<div class="d-flex pt-25">
|
|
<button class="btn-ok btn-login {{ Cy.p.login.b.enter }}" fill="clear" expand="block" shape="round" (click)="Login()">Iniciar a sessão</button>
|
|
</div>
|
|
</form>
|
|
<div class="msg-bottom d-flex">
|
|
<p class="msg-bottom-p"> </p>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
|
|
<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>
|
|
|
|
</ion-content>
|