aboutsummaryrefslogtreecommitdiff
path: root/ufund-ui/src/app/components/login
diff options
context:
space:
mode:
authorsowgro <tpoke.ferrari@gmail.com>2025-03-30 14:10:09 -0400
committersowgro <tpoke.ferrari@gmail.com>2025-03-30 14:10:09 -0400
commit3c9a9004780c0b91772fd7f868c642bdadb60348 (patch)
tree811c9ce29cb15e04746e9053f5e72085119a020a /ufund-ui/src/app/components/login
parent41c92354536d5545dee97e368b3a4b3c25c1a77f (diff)
downloadJellySolutions-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.html2
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>