diff options
author | sowgro <tpoke.ferrari@gmail.com> | 2025-03-22 00:04:40 -0400 |
---|---|---|
committer | sowgro <tpoke.ferrari@gmail.com> | 2025-03-22 00:04:40 -0400 |
commit | 0be2b5868bdda04146a22ec81596dbbb81922360 (patch) | |
tree | 27890e6141140bdfaf05f4824885d5a7f12c4739 /ufund-ui/src/app/components/login/login.component.html | |
parent | 0ba69e502b89ed2d8fe51b3b8b40eb8fba5830e1 (diff) | |
download | JellySolutions-0be2b5868bdda04146a22ec81596dbbb81922360.tar.gz JellySolutions-0be2b5868bdda04146a22ec81596dbbb81922360.tar.bz2 JellySolutions-0be2b5868bdda04146a22ec81596dbbb81922360.zip |
improve login page
Diffstat (limited to 'ufund-ui/src/app/components/login/login.component.html')
-rw-r--r-- | ufund-ui/src/app/components/login/login.component.html | 16 |
1 files changed, 9 insertions, 7 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..aff108f 100644 --- a/ufund-ui/src/app/components/login/login.component.html +++ b/ufund-ui/src/app/components/login/login.component.html @@ -1,7 +1,9 @@ -<span *ngIf="next" style="color: red">You must be logged in to view this page</span> -<p>Login:</p> -<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> -<span *ngIf="statusText">{{statusText | async}}</span> +<div id="box"> + <span *ngIf="next" style="color: red">You must be logged in to view this page</span> + <p>Login:</p> + <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> + <span *ngIf="statusText">{{statusText | async}}</span> +</div> |