diff options
author | sowgro <tpoke.ferrari@gmail.com> | 2025-03-30 14:10:09 -0400 |
---|---|---|
committer | sowgro <tpoke.ferrari@gmail.com> | 2025-03-30 14:10:09 -0400 |
commit | 3c9a9004780c0b91772fd7f868c642bdadb60348 (patch) | |
tree | 811c9ce29cb15e04746e9053f5e72085119a020a /ufund-ui/src/app/components/login | |
parent | 41c92354536d5545dee97e368b3a4b3c25c1a77f (diff) | |
download | JellySolutions-3c9a9004780c0b91772fd7f868c642bdadb60348.tar.gz JellySolutions-3c9a9004780c0b91772fd7f868c642bdadb60348.tar.bz2 JellySolutions-3c9a9004780c0b91772fd7f868c642bdadb60348.zip |
Clean up signup component
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> |