diff --git a/FencerJudgeFront/src/app/app-routing.module.ts b/FencerJudgeFront/src/app/app-routing.module.ts index 0440f68..b958478 100644 --- a/FencerJudgeFront/src/app/app-routing.module.ts +++ b/FencerJudgeFront/src/app/app-routing.module.ts @@ -10,8 +10,6 @@ import { HomeComponent } from './components/home/home.component'; import { MatchesComponent } from './components/match/matches/matches.component'; import { MatchesIdComponent } from './components/match/matches-id/matches-id.component'; -import { MatchesAddComponent } from './components/match/matches-add/matches-add.component'; -import { MatchesDelComponent } from './components/match/matches-del/matches-del.component'; const routes: Routes = [ { path: 'login', component: LoginComponent }, @@ -21,16 +19,6 @@ const routes: Routes = [ { path: 'home', component: HomeComponent }, { path: 'matches', component: MatchesComponent }, - { - path: 'matches/add', - component: MatchesAddComponent, - canActivate: [authGuard], - }, - { - path: 'matches/del/:id', - component: MatchesDelComponent, - canActivate: [authGuard], - }, { path: 'matches/:id', component: MatchesIdComponent }, ]; diff --git a/FencerJudgeFront/src/app/app.component.html b/FencerJudgeFront/src/app/app.component.html index eaf43d3..a37d5f5 100644 --- a/FencerJudgeFront/src/app/app.component.html +++ b/FencerJudgeFront/src/app/app.component.html @@ -1,3 +1,5 @@ - +
+ +
\ No newline at end of file diff --git a/FencerJudgeFront/src/app/app.module.ts b/FencerJudgeFront/src/app/app.module.ts index 4490d31..e17ffe8 100644 --- a/FencerJudgeFront/src/app/app.module.ts +++ b/FencerJudgeFront/src/app/app.module.ts @@ -11,9 +11,6 @@ import { LoginComponent } from './components/essentials/login/login.component'; import { LogoutComponent } from './components/essentials/logout/logout.component'; import { MatchesComponent } from './components/match/matches/matches.component'; import { MatchesIdComponent } from './components/match/matches-id/matches-id.component'; -import { MatchesAddComponent } from './components/match/matches-add/matches-add.component'; -import { SponsortComponent } from './templates/sponsort/sponsort.component'; -import { MatchesDelComponent } from './components/match/matches-del/matches-del.component'; @NgModule({ declarations: [ @@ -25,9 +22,6 @@ import { MatchesDelComponent } from './components/match/matches-del/matches-del. LogoutComponent, MatchesComponent, MatchesIdComponent, - MatchesAddComponent, - SponsortComponent, - MatchesDelComponent, ], imports: [BrowserModule, AppRoutingModule, FormsModule], providers: [], diff --git a/FencerJudgeFront/src/app/components/essentials/footer/footer.component.css b/FencerJudgeFront/src/app/components/essentials/footer/footer.component.css index a76370e..e69de29 100644 --- a/FencerJudgeFront/src/app/components/essentials/footer/footer.component.css +++ b/FencerJudgeFront/src/app/components/essentials/footer/footer.component.css @@ -1,21 +0,0 @@ - -.footer-gris { - background-color: #2c2c2c; /* Gris foncé personnalisé */ -} - -.flag-bar { - height: 6px; /* épaisseur du trait */ - width: 100%; /* toute la largeur */ - background: linear-gradient( - to right, - #0055a4 0%, /* bleu */ - #0055a4 33.33%, /* 1/3 */ - #fff 33.33%, /* blanc */ - #fff 66.66%, /* 2/3 */ - #ef4135 66.66%, /* rouge */ - #ef4135 100% - ); - margin-bottom: 8px; - border-radius: 3px; /* optionnel, pour arrondir les bords */ - box-shadow: 0 1px 3px rgba(0,0,0,0.1); -} \ No newline at end of file diff --git a/FencerJudgeFront/src/app/components/essentials/footer/footer.component.html b/FencerJudgeFront/src/app/components/essentials/footer/footer.component.html index a110ff8..d280498 100644 --- a/FencerJudgeFront/src/app/components/essentials/footer/footer.component.html +++ b/FencerJudgeFront/src/app/components/essentials/footer/footer.component.html @@ -1,4 +1,4 @@ -