diff options
author | Rigel Kent <sendmemail@rigelk.eu> | 2020-04-02 11:39:14 +0200 |
---|---|---|
committer | Rigel Kent <sendmemail@rigelk.eu> | 2020-04-02 11:39:14 +0200 |
commit | a6d5ff7604a3c2a94ff8814e2df7ca7bb2b48634 (patch) | |
tree | d8b27f30741ae3c9a2a72c68210644c16cd8d9b3 /client/src/app/+signup | |
parent | 21973012ab06a93dd901821dbbe078eb793bac4d (diff) | |
download | PeerTube-a6d5ff7604a3c2a94ff8814e2df7ca7bb2b48634.tar.gz PeerTube-a6d5ff7604a3c2a94ff8814e2df7ca7bb2b48634.tar.zst PeerTube-a6d5ff7604a3c2a94ff8814e2df7ca7bb2b48634.zip |
Use form-control to display box-shadow on form inputs/selects upon focus
Diffstat (limited to 'client/src/app/+signup')
2 files changed, 4 insertions, 4 deletions
diff --git a/client/src/app/+signup/+register/register-step-user.component.html b/client/src/app/+signup/+register/register-step-user.component.html index 6bac4e4a4..1bd378b13 100644 --- a/client/src/app/+signup/+register/register-step-user.component.html +++ b/client/src/app/+signup/+register/register-step-user.component.html | |||
@@ -21,7 +21,7 @@ | |||
21 | <div class="input-group"> | 21 | <div class="input-group"> |
22 | <input | 22 | <input |
23 | type="text" id="username" i18n-placeholder placeholder="Example: jane_doe" | 23 | type="text" id="username" i18n-placeholder placeholder="Example: jane_doe" |
24 | formControlName="username" [ngClass]="{ 'input-error': formErrors['username'] }" | 24 | formControlName="username" class="form-control" [ngClass]="{ 'input-error': formErrors['username'] }" |
25 | > | 25 | > |
26 | <div class="input-group-append"> | 26 | <div class="input-group-append"> |
27 | <span class="input-group-text">@{{ instanceHost }}</span> | 27 | <span class="input-group-text">@{{ instanceHost }}</span> |
@@ -41,7 +41,7 @@ | |||
41 | <label for="email" i18n>Email</label> | 41 | <label for="email" i18n>Email</label> |
42 | <input | 42 | <input |
43 | type="text" id="email" i18n-placeholder placeholder="Email" | 43 | type="text" id="email" i18n-placeholder placeholder="Email" |
44 | formControlName="email" [ngClass]="{ 'input-error': formErrors['email'] }" | 44 | formControlName="email" class="form-control" [ngClass]="{ 'input-error': formErrors['email'] }" |
45 | > | 45 | > |
46 | <div *ngIf="formErrors.email" class="form-error"> | 46 | <div *ngIf="formErrors.email" class="form-error"> |
47 | {{ formErrors.email }} | 47 | {{ formErrors.email }} |
@@ -52,7 +52,7 @@ | |||
52 | <label for="password" i18n>Password</label> | 52 | <label for="password" i18n>Password</label> |
53 | <input | 53 | <input |
54 | type="password" id="password" i18n-placeholder placeholder="Password" autocomplete="new-password" | 54 | type="password" id="password" i18n-placeholder placeholder="Password" autocomplete="new-password" |
55 | formControlName="password" [ngClass]="{ 'input-error': formErrors['password'] }" | 55 | formControlName="password" class="form-control" [ngClass]="{ 'input-error': formErrors['password'] }" |
56 | > | 56 | > |
57 | <div *ngIf="formErrors.password" class="form-error"> | 57 | <div *ngIf="formErrors.password" class="form-error"> |
58 | {{ formErrors.password }} | 58 | {{ formErrors.password }} |
diff --git a/client/src/app/+signup/+verify-account/verify-account-ask-send-email/verify-account-ask-send-email.component.html b/client/src/app/+signup/+verify-account/verify-account-ask-send-email/verify-account-ask-send-email.component.html index 2e4180632..ece9d1022 100644 --- a/client/src/app/+signup/+verify-account/verify-account-ask-send-email/verify-account-ask-send-email.component.html +++ b/client/src/app/+signup/+verify-account/verify-account-ask-send-email/verify-account-ask-send-email.component.html | |||
@@ -8,7 +8,7 @@ | |||
8 | <label i18n for="verify-email-email">Email</label> | 8 | <label i18n for="verify-email-email">Email</label> |
9 | <input | 9 | <input |
10 | type="email" id="verify-email-email" i18n-placeholder placeholder="Email address" required | 10 | type="email" id="verify-email-email" i18n-placeholder placeholder="Email address" required |
11 | formControlName="verify-email-email" [ngClass]="{ 'input-error': formErrors['verify-email-email'] }" | 11 | formControlName="verify-email-email" class="form-control" [ngClass]="{ 'input-error': formErrors['verify-email-email'] }" |
12 | > | 12 | > |
13 | <div *ngIf="formErrors['verify-email-email']" class="form-error"> | 13 | <div *ngIf="formErrors['verify-email-email']" class="form-error"> |
14 | {{ formErrors['verify-email-email'] }} | 14 | {{ formErrors['verify-email-email'] }} |