diff options
author | Chocobozzz <me@florianbigard.com> | 2022-06-08 16:14:24 +0200 |
---|---|---|
committer | Chocobozzz <me@florianbigard.com> | 2022-06-10 09:21:00 +0200 |
commit | 4c8749cb9e1e4a8d61697434e372f342def7bc70 (patch) | |
tree | 0e1b64d119b5077113163e147b711d8db5c6dd7e /client/src/app/+signup | |
parent | b89b0bfce9bb79d81f9761b07b04d0c4e5aa25c1 (diff) | |
download | PeerTube-4c8749cb9e1e4a8d61697434e372f342def7bc70.tar.gz PeerTube-4c8749cb9e1e4a8d61697434e372f342def7bc70.tar.zst PeerTube-4c8749cb9e1e4a8d61697434e372f342def7bc70.zip |
Migrate to bootstrap 5
Diffstat (limited to 'client/src/app/+signup')
5 files changed, 5 insertions, 25 deletions
diff --git a/client/src/app/+signup/+register/custom-stepper.component.html b/client/src/app/+signup/+register/custom-stepper.component.html index aad2f31d3..a07e2fca3 100644 --- a/client/src/app/+signup/+register/custom-stepper.component.html +++ b/client/src/app/+signup/+register/custom-stepper.component.html | |||
@@ -6,7 +6,7 @@ | |||
6 | (click)="onClick(i)" | 6 | (click)="onClick(i)" |
7 | > | 7 | > |
8 | <div class="step-index"> | 8 | <div class="step-index"> |
9 | <ng-container *ngIf="!isCompleted(step)"><span class="sr-only" i18n>Step</span> {{ i + 1 }}</ng-container> | 9 | <ng-container *ngIf="!isCompleted(step)"><span class="visually-hidden" i18n>Step</span> {{ i + 1 }}</ng-container> |
10 | <my-global-icon *ngIf="isCompleted(step)" iconName="tick"></my-global-icon> | 10 | <my-global-icon *ngIf="isCompleted(step)" iconName="tick"></my-global-icon> |
11 | </div> | 11 | </div> |
12 | 12 | ||
diff --git a/client/src/app/+signup/+register/register-step-channel.component.html b/client/src/app/+signup/+register/register-step-channel.component.html index 67f332409..888e3245d 100644 --- a/client/src/app/+signup/+register/register-step-channel.component.html +++ b/client/src/app/+signup/+register/register-step-channel.component.html | |||
@@ -34,9 +34,7 @@ | |||
34 | type="text" id="name" i18n-placeholder placeholder="Example: my_super_channel" | 34 | type="text" id="name" i18n-placeholder placeholder="Example: my_super_channel" |
35 | formControlName="name" [ngClass]="{ 'input-error': formErrors['name'] }" | 35 | formControlName="name" [ngClass]="{ 'input-error': formErrors['name'] }" |
36 | > | 36 | > |
37 | <div class="input-group-append"> | 37 | <div class="input-group-text">@{{ instanceHost }}</div> |
38 | <span class="input-group-text">@{{ instanceHost }}</span> | ||
39 | </div> | ||
40 | </div> | 38 | </div> |
41 | 39 | ||
42 | <div class="name-information" i18n> | 40 | <div class="name-information" i18n> |
diff --git a/client/src/app/+signup/+register/register-step-terms.component.html b/client/src/app/+signup/+register/register-step-terms.component.html index 28a6e0021..717a289e6 100644 --- a/client/src/app/+signup/+register/register-step-terms.component.html +++ b/client/src/app/+signup/+register/register-step-terms.component.html | |||
@@ -1,8 +1,8 @@ | |||
1 | <form role="form" [formGroup]="form"> | 1 | <form role="form" [formGroup]="form"> |
2 | <div class="form-group form-group-terms"> | 2 | <div class="form-group"> |
3 | <my-peertube-checkbox inputName="terms" formControlName="terms"> | 3 | <my-peertube-checkbox inputName="terms" formControlName="terms"> |
4 | <ng-template ptTemplate="label"> | 4 | <ng-template ptTemplate="label"> |
5 | <ng-container i18n> | 5 | <ng-container i18n> |
6 | I am at least {{ minimumAge }} years old and agree | 6 | I am at least {{ minimumAge }} years old and agree |
7 | to the <a class="terms-anchor" (click)="onTermsClick($event)" href='#'>Terms</a> | 7 | to the <a class="terms-anchor" (click)="onTermsClick($event)" href='#'>Terms</a> |
8 | <ng-container *ngIf="hasCodeOfConduct"> and to the <a (click)="onCodeOfConductClick($event)" href='#'>Code of Conduct</a></ng-container> | 8 | <ng-container *ngIf="hasCodeOfConduct"> and to the <a (click)="onCodeOfConductClick($event)" href='#'>Code of Conduct</a></ng-container> |
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 cab21c655..745b37c10 100644 --- a/client/src/app/+signup/+register/register-step-user.component.html +++ b/client/src/app/+signup/+register/register-step-user.component.html | |||
@@ -27,9 +27,7 @@ | |||
27 | type="text" id="username" i18n-placeholder="Username choice placeholder in the registration form" placeholder="e.g. jane_doe" | 27 | type="text" id="username" i18n-placeholder="Username choice placeholder in the registration form" placeholder="e.g. jane_doe" |
28 | formControlName="username" class="form-control" [ngClass]="{ 'input-error': formErrors['username'] }" | 28 | formControlName="username" class="form-control" [ngClass]="{ 'input-error': formErrors['username'] }" |
29 | > | 29 | > |
30 | <div class="input-group-append"> | 30 | <span class="input-group-text">@{{ instanceHost }}</span> |
31 | <span class="input-group-text">@{{ instanceHost }}</span> | ||
32 | </div> | ||
33 | </div> | 31 | </div> |
34 | 32 | ||
35 | <div class="name-information" i18n> | 33 | <div class="name-information" i18n> |
diff --git a/client/src/app/+signup/+register/register.component.scss b/client/src/app/+signup/+register/register.component.scss index 4be67a858..53093a81a 100644 --- a/client/src/app/+signup/+register/register.component.scss +++ b/client/src/app/+signup/+register/register.component.scss | |||
@@ -29,22 +29,6 @@ | |||
29 | } | 29 | } |
30 | } | 30 | } |
31 | 31 | ||
32 | .form-group-terms { | ||
33 | margin: 30px 0; | ||
34 | } | ||
35 | |||
36 | .input-group { | ||
37 | @include peertube-input-group(100%); | ||
38 | } | ||
39 | |||
40 | .input-group-append { | ||
41 | height: 30px; | ||
42 | } | ||
43 | |||
44 | .form-group-terms { | ||
45 | width: 100% !important; | ||
46 | } | ||
47 | |||
48 | input:not([type=submit]) { | 32 | input:not([type=submit]) { |
49 | @include peertube-input-text(100%); | 33 | @include peertube-input-text(100%); |
50 | display: block; | 34 | display: block; |