aboutsummaryrefslogtreecommitdiff
path: root/ufund-ui/src/app/app-routing.module.ts
diff options
context:
space:
mode:
authorTyler Ferrari <69283684+Sowgro@users.noreply.github.com>2025-03-30 14:12:41 -0400
committerGitHub <noreply@github.com>2025-03-30 14:12:41 -0400
commit0c793d302c5065085ff7982a68f7ed449d84d6dc (patch)
treefbbf2c808300c395caddccb0a929c7500453be84 /ufund-ui/src/app/app-routing.module.ts
parentddbd1cc688aa98fb275ad72a750fbaaf53e6c0ae (diff)
parent3c9a9004780c0b91772fd7f868c642bdadb60348 (diff)
downloadJellySolutions-0c793d302c5065085ff7982a68f7ed449d84d6dc.tar.gz
JellySolutions-0c793d302c5065085ff7982a68f7ed449d84d6dc.tar.bz2
JellySolutions-0c793d302c5065085ff7982a68f7ed449d84d6dc.zip
Merge pull request #19 from RIT-SWEN-261-02/signup-page
signup-page merge
Diffstat (limited to 'ufund-ui/src/app/app-routing.module.ts')
-rw-r--r--ufund-ui/src/app/app-routing.module.ts4
1 files changed, 3 insertions, 1 deletions
diff --git a/ufund-ui/src/app/app-routing.module.ts b/ufund-ui/src/app/app-routing.module.ts
index 4b76654..a6ea806 100644
--- a/ufund-ui/src/app/app-routing.module.ts
+++ b/ufund-ui/src/app/app-routing.module.ts
@@ -6,6 +6,7 @@ import {LoginComponent} from './components/login/login.component';
import {HomePageComponent} from './components/home-page/home-page.component';
import {FundingBasketComponent} from './components/funding-basket/funding-basket.component';
import {NeedPageComponent} from './components/need-page/need-page.component';
+import {SignupComponent} from './components/signup/signup.component';
const routes: Routes = [
{path: '', component: HomePageComponent},
@@ -13,7 +14,8 @@ const routes: Routes = [
{path: 'cupboard', component: CupboardComponent},
{path: 'dashboard', component: DashboardComponent},
{path: 'basket', component: FundingBasketComponent},
- {path: 'need/:id', component: NeedPageComponent}
+ {path: 'need/:id', component: NeedPageComponent},
+ {path: 'signup', component: SignupComponent},
];
@NgModule({