ui besucher umbenannt

da backend auf gleiche url hört
This commit is contained in:
HuskyTeufel
2022-01-14 10:01:16 +01:00
parent 8acd4b7bb4
commit 5148401554
2 changed files with 2 additions and 2 deletions

View File

@@ -8,7 +8,7 @@ import { LocationComponent } from './location/location.component';
const routes: Routes = [ const routes: Routes = [
{ path: '', redirectTo: '/home',pathMatch:'full'}, { path: '', redirectTo: '/home',pathMatch:'full'},
{ path: 'home', component: HomeComponent}, { path: 'home', component: HomeComponent},
{ path: 'besucher',component: BesucherComponent}, { path: 'client',component: BesucherComponent},
{ path: 'unserfest',component: LocationComponent}, { path: 'unserfest',component: LocationComponent},
{ path:'contact', component: ContactComponent} { path:'contact', component: ContactComponent}
]; ];

View File

@@ -10,7 +10,7 @@
<a class="nav-link" routerLink="/contact">Kontaktdaten</a> <a class="nav-link" routerLink="/contact">Kontaktdaten</a>
</li> </li>
<li class="nav-item"> <li class="nav-item">
<a class="nav-link" routerLink="/besucher">Anmeldung zum Fest</a> <a class="nav-link" routerLink="/client">Anmeldung zum Fest</a>
</li> </li>
</ul> </ul>
</nav> </nav>