diff options
| author | Hayden Hartman <haydenhartman10@gmail.com> | 2025-04-04 16:23:52 -0400 | 
|---|---|---|
| committer | GitHub <noreply@github.com> | 2025-04-04 16:23:52 -0400 | 
| commit | 5a5d31896d79a736bce33b7d1aa7b3168ba308a9 (patch) | |
| tree | a1e1862c0bb545bf8f9a642035fe5a791139ce27 /ufund-ui/src/app/components/signup/signup.component.html | |
| parent | 8cdf84ae4a6765db8f462cc71e2685c1d3514f08 (diff) | |
| parent | 0a876b31609144c62f312ea59f074f5f79b67ae7 (diff) | |
| download | JellySolutions-5a5d31896d79a736bce33b7d1aa7b3168ba308a9.tar.gz JellySolutions-5a5d31896d79a736bce33b7d1aa7b3168ba308a9.tar.bz2 JellySolutions-5a5d31896d79a736bce33b7d1aa7b3168ba308a9.zip  | |
Merge pull request #28 from RIT-SWEN-261-02/css
css-merge
Diffstat (limited to '')
| -rw-r--r-- | ufund-ui/src/app/components/signup/signup.component.html | 9 | 
1 files changed, 4 insertions, 5 deletions
diff --git a/ufund-ui/src/app/components/signup/signup.component.html b/ufund-ui/src/app/components/signup/signup.component.html index 84f15e4..ef2fc27 100644 --- a/ufund-ui/src/app/components/signup/signup.component.html +++ b/ufund-ui/src/app/components/signup/signup.component.html @@ -7,13 +7,12 @@      <div>          <div> -            <input placeholder="Password" type="password" (input)="validate(username.value, confirmPass.value, password.value)" #password> +            <input id="password" placeholder="Password" type="password" (input)="validate(username.value, confirmPass.value, password.value)" #password>              <progress [ngClass]="'color' + strength.getValue()" id="bar" [value]="strength | async" max="5">  </progress>              <span *ngIf="passwordStatusText">{{passwordStatusText | async}}</span> -        </div> - -        <div id="passReq"> -            <span *ngFor="let requirement of Object.values(passwordRequirements)" [style.color]="requirement.value ? 'green' : 'red'"><span class="icon">{{requirement.value?"check":"close"}}</span> {{requirement.title}}</span> +            <div id="passReq"> +                <span *ngFor="let requirement of Object.values(passwordRequirements)" [style.color]="requirement.value ? 'green' : 'red'"><span class="icon">{{requirement.value?"check":"close"}}</span> {{requirement.title}}</span> +            </div>          </div>      </div>  | 
