diff options
author | Tyler Ferrari <69283684+Sowgro@users.noreply.github.com> | 2025-03-30 14:12:41 -0400 |
---|---|---|
committer | GitHub <noreply@github.com> | 2025-03-30 14:12:41 -0400 |
commit | 0c793d302c5065085ff7982a68f7ed449d84d6dc (patch) | |
tree | fbbf2c808300c395caddccb0a929c7500453be84 /ufund-ui/src/app/components/login | |
parent | ddbd1cc688aa98fb275ad72a750fbaaf53e6c0ae (diff) | |
parent | 3c9a9004780c0b91772fd7f868c642bdadb60348 (diff) | |
download | JellySolutions-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/components/login')
-rw-r--r-- | ufund-ui/src/app/components/login/login.component.html | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/ufund-ui/src/app/components/login/login.component.html b/ufund-ui/src/app/components/login/login.component.html index 2cdb6d0..a6441f4 100644 --- a/ufund-ui/src/app/components/login/login.component.html +++ b/ufund-ui/src/app/components/login/login.component.html @@ -3,5 +3,5 @@ <input placeholder="Username" type="text" #username> <input placeholder="Password" type="password" #password> <button type="button" (click)="login(username.value, password.value)">Login</button> -<button type="button" (click)="signup(username.value, password.value)">Create Account</button> +<button type="button" routerLink="/signup">Create Account...</button> <span *ngIf="statusText">{{statusText | async}}</span> |