-
-
Notifications
You must be signed in to change notification settings - Fork 6
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
933a4a0
commit 6ad7f19
Showing
12 changed files
with
43 additions
and
311 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,9 +1,9 @@ | ||
import { Component } from '@angular/core'; | ||
|
||
@Component({ | ||
selector: 'cosna-root', | ||
selector: 'admin-root', | ||
template: '<router-outlet></router-outlet>', | ||
}) | ||
export class AppComponent { | ||
title = 'Cosna Cpanel'; | ||
title = 'Admin Cpanel'; | ||
} |
14 changes: 7 additions & 7 deletions
14
src/app/modules/authentication/pages/forgot-password/forgot-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
25 changes: 0 additions & 25 deletions
25
src/app/modules/authentication/pages/forgot-password/forgot-password.component.spec.ts
This file was deleted.
Oops, something went wrong.
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
25 changes: 0 additions & 25 deletions
25
src/app/modules/authentication/pages/login/login.component.spec.ts
This file was deleted.
Oops, something went wrong.
22 changes: 11 additions & 11 deletions
22
src/app/modules/authentication/pages/reset-password/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 |
---|---|---|
@@ -1,51 +1,51 @@ | ||
<div> | ||
<cosna-logo-svg class="h-auto w-36"></cosna-logo-svg> | ||
<logo-svg class="h-auto w-36"></logo-svg> | ||
<h2 class="mt-6 text-3xl font-semibold text-slate-900">Réinitialisation Mot de passe</h2> | ||
<p class="mt-2 text-sm text-slate-600"> | ||
Veuillez renseignez votre nouveau mot de passe pour vous connectez. | ||
</p> | ||
</div> | ||
|
||
<!-- Session Status --> | ||
<cosna-success *ngIf="message$ | async; let message" [message]="message" class="mt-4"></cosna-success> | ||
<alert-success *ngIf="message$ | async; let message" [message]="message" class="mt-4"></alert-success> | ||
|
||
<!-- Validation Errors --> | ||
<cosna-errors *ngIf="error$ | async; let error" [message]="error" class="mt-4"></cosna-errors> | ||
<alert-errors *ngIf="error$ | async; let error" [message]="error" class="mt-4"></alert-errors> | ||
|
||
<form [formGroup]="form" (submit)="submit()" class="mt-8 space-y-6"> | ||
<!-- Email Address --> | ||
<div> | ||
<cosna-input-overlaping-label | ||
<input-overlaping-label | ||
label="Adresse E-mail" | ||
name="email" | ||
formControlName="email" | ||
></cosna-input-overlaping-label> | ||
></input-overlaping-label> | ||
</div> | ||
|
||
<!-- Password --> | ||
<div> | ||
<cosna-input-overlaping-label | ||
<input-overlaping-label | ||
label="Nouveau Mot de passe" | ||
name="password" | ||
formControlName="password" | ||
[type]="'password'" | ||
></cosna-input-overlaping-label> | ||
></input-overlaping-label> | ||
</div> | ||
|
||
<!-- Password Confirmation --> | ||
<div> | ||
<cosna-input-overlaping-label | ||
<input-overlaping-label | ||
label="Confirmer Mot de passe" | ||
name="password_confirmation" | ||
formControlName="password_confirmation" | ||
[type]="'password'" | ||
></cosna-input-overlaping-label> | ||
></input-overlaping-label> | ||
</div> | ||
|
||
<div class="flex items-center justify-end"> | ||
<cosna-button-primary type="submit" class="space-x-3" [loading$]="loading$"> | ||
<button-primary type="submit" class="space-x-3" [loading$]="loading$"> | ||
Réinitialiser Mot de passe | ||
</cosna-button-primary> | ||
</button-primary> | ||
</div> | ||
|
||
</form> |
25 changes: 0 additions & 25 deletions
25
src/app/modules/authentication/pages/reset-password/reset-password.component.spec.ts
This file was deleted.
Oops, something went wrong.
25 changes: 0 additions & 25 deletions
25
src/app/modules/dashboard/pages/dashboard/dashboard.component.spec.ts
This file was deleted.
Oops, something went wrong.
Oops, something went wrong.