-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
style(Auth): 🎨 login, reset-password pages redesign
- Loading branch information
1 parent
27320d1
commit 70c55c3
Showing
34 changed files
with
352 additions
and
379 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
52 changes: 52 additions & 0 deletions
52
src/app/backoffice/autentificacion/form-reset-password/form-reset-password.component.html
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,52 @@ | ||
<div class="p-3 auth-main-container"> | ||
<div class="flex align-items-center justify-content-start"> | ||
<app-language-select></app-language-select> | ||
</div> | ||
<div class="flex align-items-center justify-content-center"> | ||
<div class="auth-container p-fluid"> | ||
<div class="grid"> | ||
<div class="col-9 pl-3"> | ||
<h3>{{ 'pages.form-reset-password.title' | translate }}</h3> | ||
</div> | ||
</div> | ||
<form [formGroup]="form" (ngSubmit)="onSubmit()"> | ||
<div class="p-fluid"> | ||
<div class="xs:col-12 lg:col-12 pt-1"> | ||
<span class="p-float-label"> | ||
<input pInputText name="password" type="password" formControlName="password" /> | ||
<label for="password">{{ 'columns.newPassword' | translate }}</label> | ||
</span> | ||
</div> | ||
<div class="xs:col-12 lg:col-12 pt-1"> | ||
<span class="p-float-label"> | ||
<input pInputText name="repeat_password" type="password" formControlName="repeat_password" /> | ||
<label for="repeat_password">{{ 'columns.repeatNewPassword' | translate }}</label> | ||
</span> | ||
</div> | ||
<div class="xs:col-12 lg:col-12"> | ||
<div> | ||
<button | ||
*ngIf="!loading" | ||
[disabled]="form.invalid" | ||
pButton | ||
type="submit" | ||
[label]="'buttons.resetPassword' | translate" | ||
icon="ui-icon-person" | ||
style="width: 100%" | ||
></button> | ||
<button | ||
*ngIf="loading" | ||
[disabled]="form.invalid" | ||
pButton | ||
type="submit" | ||
[label]="'buttons.resetPassword' | translate" | ||
icon="pi pi-spin pi-spinner" | ||
style="width: 100%" | ||
></button> | ||
</div> | ||
</div> | ||
</div> | ||
</form> | ||
</div> | ||
</div> | ||
</div> |
1 change: 1 addition & 0 deletions
1
src/app/backoffice/autentificacion/form-reset-password/form-reset-password.component.scss
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
@import '../styles/auth-styles.scss'; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
80 changes: 0 additions & 80 deletions
80
...backoffice/autentificacion/formulario-recuperacion/formulario-recuperacion.component.html
This file was deleted.
Oops, something went wrong.
Empty file.
7 changes: 0 additions & 7 deletions
7
src/app/backoffice/autentificacion/login-success/login-success.component.html
This file was deleted.
Oops, something went wrong.
Empty file.
11 changes: 0 additions & 11 deletions
11
src/app/backoffice/autentificacion/login-success/login-success.component.ts
This file was deleted.
Oops, something went wrong.
Oops, something went wrong.