Merge branch 'dev' into thomas

This commit is contained in:
Thomas Cardon 2022-03-09 13:56:06 +01:00
commit 8b70164a9f
5 changed files with 12 additions and 11 deletions

View File

@ -15,16 +15,15 @@ import { PageAccountComponent } from './pages/page-account/page-account.componen
const routes: Routes = [
{ path: '', redirectTo: 'home', pathMatch: 'full' },
{path: 'signin', component: SigninComponent},
{path: 'signup', component: SignupComponent},
{ path: 'home', component: HomePageComponent },
{ path: 'categories', component: ListCategoriesComponent },
{ path: 'favoris', component: FavorisUserComponent },
{ path: 'filtres', component: FiltersPageComponent },
{ path: 'profil', component: PageAccountComponent },
{ path: 'home',canActivate: [AuthGuard], component: HomePageComponent },
{ path: 'categories',canActivate: [AuthGuard], component: ListCategoriesComponent },
{ path: 'favoris',canActivate: [AuthGuard], component: FavorisUserComponent },
{ path: 'filtres',canActivate: [AuthGuard], component: FiltersPageComponent },
{ path: 'profil',canActivate: [AuthGuard], component: PageAccountComponent },
{ path: 'Deconnexion', redirectTo: 'home'},
{path: 'restaurants', canActivate: [AuthGuard], /*data : {ROLE : "ROLE_ADMIN"},*/ component: RestoPageComponent},
{path: 'page-not-found',component: PageNotFoundComponent},
{path: 'admin', component: AdminPageComponent},
{path: 'admin',canActivate: [AuthGuard], component: AdminPageComponent},
{path: '**', redirectTo: 'page-not-found' }
];

View File

@ -34,8 +34,6 @@
}
.accordion-button.collapsed {
background: #CE0000;
}
.accordion-button.collapsed::after {

View File

@ -46,7 +46,9 @@
<div class="accordion-body">
<div class="minMax p-3">
<span>Veuillez sélectionner le prix souhaité</span>
<span>Veuillez sélectionner la gamme de prix souhaitée</span>
<br>
<span>1(1 à 10) 2(11 à 20) 3(21 à 30) 4(31 à 20)</span>
</div>
<input type="range" class="form-range" ng-model="valuePrix" min="{{minPrice}}" max="{{maxPrice}}"
(change)="OnChangeValuePrice($event)">

View File

@ -1,4 +1,5 @@
<div class="container mt-5">
<h1 style = "text-align: center; font-family: 'Dancing Script', cursive; font-size: 7vh;">Vos informations personnelles</h1>
<form class="row g-2" [formGroup]="userInfo">
<div class="col-md-6">
<label for="inputFirstName" class="form-label">Prénom</label>

View File

@ -37,6 +37,7 @@ export class AuthGuard implements CanActivate {
// le token a expiré, je n'autorise pas l'accès
this.tokenService.destroyToken(this.tokenKey);
this.router.navigate(['signin']);
return false;
}
}