Skip to content

Commit

Permalink
[ADD] Add footer and project name
Browse files Browse the repository at this point in the history
  • Loading branch information
Landris18 committed Mar 1, 2024
1 parent d3386f6 commit 1363216
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 5 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -85,7 +85,7 @@

<!-- Footer -->
<div class="relative flex flex-0 items-center justify-start w-full h-14 px-4 md:px-6 z-49 border-t bg-card dark:bg-transparent print:hidden">
<span class="font-medium text-secondary">Blue Diamond &copy; {{currentYear}}</span>
<span class="font-medium text-secondary">RASENDRANIRINA Manankoraisina Landry et RAJAONARIVONY Rivo Lalaina &copy; {{currentYear}}</span>
</div>

</div>
2 changes: 0 additions & 2 deletions src/app/modules/admin/dashboards/project/project.component.ts
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,6 @@ export class ProjectComponent implements OnInit, OnDestroy {
searchInputControl: FormControl = new FormControl();
filteredEmployes: any;
stats: any;
isLoading: boolean;

/**
* Constructor
Expand Down Expand Up @@ -176,7 +175,6 @@ export class ProjectComponent implements OnInit, OnDestroy {
}

getAllStats() {
this.isLoading = true;
const { startDate, endDate } = this.getStartAndEndDate();
const queryParams = `?startDate=${startDate}&endDate=${endDate}`
this._projectService.getStats(queryParams).subscribe((res: any) => {
Expand Down
1 change: 1 addition & 0 deletions src/app/modules/auth/sign-in/sign-in.component.html
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,7 @@
</div>

<!-- Title -->
<div class="mt-8 text-4xl font-extrabold tracking-tight leading-tight">m1p10mean-rivo-landry</div>
<div class="mt-8 text-4xl font-extrabold tracking-tight leading-tight">Se connecter</div>
<div class="flex items-baseline mt-0.5 font-medium">
<div>Vous n'avez pas de compte ?</div>
Expand Down
4 changes: 2 additions & 2 deletions src/app/modules/auth/sign-in/sign-in.component.ts
Original file line number Diff line number Diff line change
Expand Up @@ -41,8 +41,8 @@ export class AuthSignInComponent implements OnInit {
ngOnInit(): void {
// Create the form
this.signInForm = this._formBuilder.group({
email: ['', [Validators.required, Validators.email]],
password: ['', Validators.required]
email: ['[email protected]', [Validators.required, Validators.email]],
password: ['root18', Validators.required]
});
}

Expand Down

0 comments on commit 1363216

Please sign in to comment.