aboutsummaryrefslogtreecommitdiff
path: root/ufund-ui/src/app/components/signup/signup.component.html
diff options
context:
space:
mode:
authorGunther6070 <haydenhartman10@yahoo.com>2025-03-25 18:07:45 -0400
committerGunther6070 <haydenhartman10@yahoo.com>2025-03-25 18:07:45 -0400
commitb0369f8b5e50eaec22c9178748f57dde6912d383 (patch)
tree35321024e74b71f11bda4ecc30de44843f28a838 /ufund-ui/src/app/components/signup/signup.component.html
parent5f03e80712f7a18370b5118fde5327bde1b6fbbf (diff)
downloadJellySolutions-b0369f8b5e50eaec22c9178748f57dde6912d383.tar.gz
JellySolutions-b0369f8b5e50eaec22c9178748f57dde6912d383.tar.bz2
JellySolutions-b0369f8b5e50eaec22c9178748f57dde6912d383.zip
Created signup component and implemented some functionality. Did not finish implementing color bar and error messages.
Diffstat (limited to 'ufund-ui/src/app/components/signup/signup.component.html')
-rw-r--r--ufund-ui/src/app/components/signup/signup.component.html7
1 files changed, 7 insertions, 0 deletions
diff --git a/ufund-ui/src/app/components/signup/signup.component.html b/ufund-ui/src/app/components/signup/signup.component.html
new file mode 100644
index 0000000..742b8cf
--- /dev/null
+++ b/ufund-ui/src/app/components/signup/signup.component.html
@@ -0,0 +1,7 @@
+<p>Signup:</p>
+<input placeholder="Username" type="text" #username>
+<input placeholder="Password" type="password" (input)="checkPasswordStrength(password.value)" #password>
+<button type="button" (click)="signup(username.value, password.value)">Create Account</button>
+<span *ngIf="statusText">{{statusText | async}}</span>
+<span *ngIf="strength">{{strength | async}}</span>
+<span *ngIf="showSuccessMessage | async">Account created <a routerLink="/login">Proceed to login</a></span>