aboutsummaryrefslogtreecommitdiff
path: root/ufund-ui/src/app/components/signup/signup.component.html
diff options
context:
space:
mode:
authorsowgro <tpoke.ferrari@gmail.com>2025-04-01 21:17:45 -0400
committersowgro <tpoke.ferrari@gmail.com>2025-04-01 21:17:45 -0400
commit2eb67f9481d858474e77af545e71f68b2cea7041 (patch)
treec08cbcdb85f20edc4f3198f17f1c5597dfc0dae7 /ufund-ui/src/app/components/signup/signup.component.html
parent77f3cf60bbb9e7b13cc2642fa06b5f40dccdbdb1 (diff)
downloadJellySolutions-2eb67f9481d858474e77af545e71f68b2cea7041.tar.gz
JellySolutions-2eb67f9481d858474e77af545e71f68b2cea7041.tar.bz2
JellySolutions-2eb67f9481d858474e77af545e71f68b2cea7041.zip
Simplify sign up process
Diffstat (limited to 'ufund-ui/src/app/components/signup/signup.component.html')
-rw-r--r--ufund-ui/src/app/components/signup/signup.component.html4
1 files changed, 1 insertions, 3 deletions
diff --git a/ufund-ui/src/app/components/signup/signup.component.html b/ufund-ui/src/app/components/signup/signup.component.html
index bc3aaf0..84f15e4 100644
--- a/ufund-ui/src/app/components/signup/signup.component.html
+++ b/ufund-ui/src/app/components/signup/signup.component.html
@@ -8,7 +8,7 @@
<div>
<div>
<input placeholder="Password" type="password" (input)="validate(username.value, confirmPass.value, password.value)" #password>
- <progress [ngClass]="'color' + strength.getValue()" id="bar" [value]="strength | async" max="6"> </progress>
+ <progress [ngClass]="'color' + strength.getValue()" id="bar" [value]="strength | async" max="5"> </progress>
<span *ngIf="passwordStatusText">{{passwordStatusText | async}}</span>
</div>
@@ -24,8 +24,6 @@
<div>
<button [disabled]="!(ableToCreateAccount | async)" (click)="signup(username.value, password.value)">Create Account</button>
- <span *ngIf="showSuccessMessage | async">Account created <a routerLink="/login">Proceed to login</a></span>
- <span *ngIf="statusText | async">{{statusText | async}}</span>
</div>
<span>Already have an account? <a routerLink="/login">Log in</a></span>
</div>