diff options
-rw-r--r-- | client/src/app/signup/signup.component.html | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/client/src/app/signup/signup.component.html b/client/src/app/signup/signup.component.html index eb36b29f6..f95897ea4 100644 --- a/client/src/app/signup/signup.component.html +++ b/client/src/app/signup/signup.component.html | |||
@@ -10,7 +10,7 @@ | |||
10 | <div class="form-group"> | 10 | <div class="form-group"> |
11 | <label for="username">Username</label> | 11 | <label for="username">Username</label> |
12 | <input | 12 | <input |
13 | type="text" class="form-control" id="username" placeholder="Username" | 13 | type="text" id="username" placeholder="Username" |
14 | formControlName="username" [ngClass]="{ 'input-error': formErrors['username'] }" | 14 | formControlName="username" [ngClass]="{ 'input-error': formErrors['username'] }" |
15 | > | 15 | > |
16 | <div *ngIf="formErrors.username" class="form-error"> | 16 | <div *ngIf="formErrors.username" class="form-error"> |
@@ -21,7 +21,7 @@ | |||
21 | <div class="form-group"> | 21 | <div class="form-group"> |
22 | <label for="email">Email</label> | 22 | <label for="email">Email</label> |
23 | <input | 23 | <input |
24 | type="text" class="form-control" id="email" placeholder="Email" | 24 | type="text" id="email" placeholder="Email" |
25 | formControlName="email" [ngClass]="{ 'input-error': formErrors['email'] }" | 25 | formControlName="email" [ngClass]="{ 'input-error': formErrors['email'] }" |
26 | > | 26 | > |
27 | <div *ngIf="formErrors.email" class="form-error"> | 27 | <div *ngIf="formErrors.email" class="form-error"> |
@@ -32,7 +32,7 @@ | |||
32 | <div class="form-group"> | 32 | <div class="form-group"> |
33 | <label for="password">Password</label> | 33 | <label for="password">Password</label> |
34 | <input | 34 | <input |
35 | type="password" class="form-control" id="password" placeholder="Password" | 35 | type="password" id="password" placeholder="Password" |
36 | formControlName="password" [ngClass]="{ 'input-error': formErrors['password'] }" | 36 | formControlName="password" [ngClass]="{ 'input-error': formErrors['password'] }" |
37 | > | 37 | > |
38 | <div *ngIf="formErrors.password" class="form-error"> | 38 | <div *ngIf="formErrors.password" class="form-error"> |