diff options
author | Gunther6070 <haydenhartman10@yahoo.com> | 2025-03-25 18:07:45 -0400 |
---|---|---|
committer | Gunther6070 <haydenhartman10@yahoo.com> | 2025-03-25 18:07:45 -0400 |
commit | b0369f8b5e50eaec22c9178748f57dde6912d383 (patch) | |
tree | 35321024e74b71f11bda4ecc30de44843f28a838 /ufund-ui/src/app/components/signup/signup.component.html | |
parent | 5f03e80712f7a18370b5118fde5327bde1b6fbbf (diff) | |
download | JellySolutions-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.html | 7 |
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> |