replacing placeholder and feature table display improvement
This commit is contained in:
parent
8b60488020
commit
07872fdf74
|
@ -20,4 +20,8 @@ input[type=submit] {
|
||||||
.create-an-account, .forgot-password-button {
|
.create-an-account, .forgot-password-button {
|
||||||
color: #000;
|
color: #000;
|
||||||
cursor: pointer;
|
cursor: pointer;
|
||||||
|
|
||||||
|
&:hover {
|
||||||
|
text-decoration: underline !important;
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
|
@ -4,17 +4,16 @@
|
||||||
Create an account
|
Create an account
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
<my-instance-features-table></my-instance-features-table>
|
|
||||||
|
|
||||||
<div *ngIf="error" class="alert alert-danger">{{ error }}</div>
|
<div *ngIf="error" class="alert alert-danger">{{ error }}</div>
|
||||||
|
|
||||||
|
<div class="d-flex justify-content-left flex-wrap">
|
||||||
<form role="form" (ngSubmit)="signup()" [formGroup]="form">
|
<form role="form" (ngSubmit)="signup()" [formGroup]="form">
|
||||||
<div class="form-group">
|
<div class="form-group">
|
||||||
<label for="username" i18n>Username</label>
|
<label for="username" i18n>Username</label>
|
||||||
|
|
||||||
<div class="input-group">
|
<div class="input-group">
|
||||||
<input
|
<input
|
||||||
type="text" id="username" i18n-placeholder placeholder="Example: neil_amstrong"
|
type="text" id="username" i18n-placeholder placeholder="Example: jane_doe"
|
||||||
formControlName="username" [ngClass]="{ 'input-error': formErrors['username'] }"
|
formControlName="username" [ngClass]="{ 'input-error': formErrors['username'] }"
|
||||||
>
|
>
|
||||||
<div class="input-group-append">
|
<div class="input-group-append">
|
||||||
|
@ -63,4 +62,10 @@
|
||||||
<input type="submit" i18n-value value="Signup" [disabled]="!form.valid">
|
<input type="submit" i18n-value value="Signup" [disabled]="!form.valid">
|
||||||
</form>
|
</form>
|
||||||
|
|
||||||
|
<div>
|
||||||
|
<label for="email" i18n>Features found on this instance</label>
|
||||||
|
<my-instance-features-table></my-instance-features-table>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
|
||||||
</div>
|
</div>
|
||||||
|
|
|
@ -7,6 +7,10 @@ my-instance-features-table {
|
||||||
margin-bottom: 40px;
|
margin-bottom: 40px;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
form {
|
||||||
|
margin: 0 60px 40px 0;
|
||||||
|
}
|
||||||
|
|
||||||
.form-group-terms {
|
.form-group-terms {
|
||||||
margin: 30px 0;
|
margin: 30px 0;
|
||||||
}
|
}
|
||||||
|
@ -15,6 +19,10 @@ my-instance-features-table {
|
||||||
@include peertube-input-group(400px);
|
@include peertube-input-group(400px);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
.input-group-append {
|
||||||
|
height: 30px;
|
||||||
|
}
|
||||||
|
|
||||||
input:not([type=submit]) {
|
input:not([type=submit]) {
|
||||||
@include peertube-input-text(400px);
|
@include peertube-input-text(400px);
|
||||||
display: block;
|
display: block;
|
||||||
|
|
Loading…
Reference in New Issue