Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

🎨 App Design: Sign up Page #391

Merged
merged 11 commits into from
Apr 17, 2023
Prev Previous commit
Next Next commit
🔨add disabled attribute
  • Loading branch information
Michael-Otieno committed Mar 31, 2023
commit 7cf9f2e95721dd8a667237883d44baaecac95e4d
Original file line number Diff line number Diff line change
Expand Up @@ -24,6 +24,7 @@
formControlName="firstName"
required
placeholder="John"
[disabled]="!isLoading"
/>
<mat-error>{{
'LOGIN.CREATE-ACC-FORM.FLD-NAME-REQ' | transloco
Expand All @@ -45,6 +46,7 @@
formControlName="lastName"
required
placeholder="Doe"
[disabled]="!isLoading"
/>
<mat-error>{{
'LOGIN.CREATE-ACC-FORM.FLD-NAME-REQ' | transloco
Expand All @@ -68,7 +70,7 @@
type="email"
formControlName="email"
required
ngvemail
[disabled]="!isLoading"
placeholder="name@example.com"
/>
<mat-error>{{
Expand All @@ -94,6 +96,7 @@
type="password"
formControlName="password"
required
[disabled]="!isLoading"
/>
</mat-form-field>
</div>
Expand All @@ -115,7 +118,7 @@
type="password"
formControlName="confirmPassword"
required
[attr.disabled]="true"
[disabled]="!isLoading"
/>
<mat-error>{{
'LOGIN.CREATE-ACC-FORM.FLD-CONF-PASSWD-ERR' | transloco
Expand Down