mirror of https://github.com/Chocobozzz/PeerTube
79 lines
2.4 KiB
HTML
79 lines
2.4 KiB
HTML
<div class="margin-content">
|
|
|
|
<div i18n class="title-page title-page-single">
|
|
Create an account
|
|
</div>
|
|
|
|
<div class="initial-user-quota">
|
|
<span i18n class="initial-user-quota-label">Initial video quota:</span>
|
|
|
|
<span *ngIf="initialUserVideoQuota !== -1">
|
|
{{ initialUserVideoQuota | bytes: 0 }}
|
|
|
|
<my-help helpType="custom" [customHtml]="quotaHelpIndication"></my-help>
|
|
</span>
|
|
|
|
<ng-container i18n *ngIf="initialUserVideoQuota === -1">
|
|
Unlimited
|
|
</ng-container>
|
|
</div>
|
|
|
|
<div *ngIf="error" class="alert alert-danger">{{ error }}</div>
|
|
|
|
<form role="form" (ngSubmit)="signup()" [formGroup]="form">
|
|
<div class="form-group">
|
|
<label for="username" i18n>Username</label>
|
|
|
|
<div class="input-group">
|
|
<input
|
|
type="text" id="username" i18n-placeholder placeholder="Example: neil_amstrong"
|
|
formControlName="username" [ngClass]="{ 'input-error': formErrors['username'] }"
|
|
>
|
|
<div class="input-group-append">
|
|
<span class="input-group-text">@{{ instanceHost }}</span>
|
|
</div>
|
|
</div>
|
|
|
|
<div *ngIf="formErrors.username" class="form-error">
|
|
{{ formErrors.username }}
|
|
</div>
|
|
</div>
|
|
|
|
<div class="form-group">
|
|
<label for="email" i18n>Email</label>
|
|
<input
|
|
type="text" id="email" i18n-placeholder placeholder="Email"
|
|
formControlName="email" [ngClass]="{ 'input-error': formErrors['email'] }"
|
|
>
|
|
<div *ngIf="formErrors.email" class="form-error">
|
|
{{ formErrors.email }}
|
|
</div>
|
|
</div>
|
|
|
|
<div class="form-group">
|
|
<label for="password" i18n>Password</label>
|
|
<input
|
|
type="password" id="password" i18n-placeholder placeholder="Password"
|
|
formControlName="password" [ngClass]="{ 'input-error': formErrors['password'] }"
|
|
>
|
|
<div *ngIf="formErrors.password" class="form-error">
|
|
{{ formErrors.password }}
|
|
</div>
|
|
</div>
|
|
|
|
<div class="form-group form-group-terms">
|
|
<my-peertube-checkbox
|
|
inputName="terms" formControlName="terms"
|
|
i18n-labelHtml labelHtml="I have read and agree to the <a href='/about/instance#terms-section' target='_blank'rel='noopener noreferrer'>Terms</a> of this instance"
|
|
></my-peertube-checkbox>
|
|
|
|
<div *ngIf="formErrors.terms" class="form-error">
|
|
{{ formErrors.terms }}
|
|
</div>
|
|
</div>
|
|
|
|
<input type="submit" i18n-value value="Signup" [disabled]="!form.valid">
|
|
</form>
|
|
|
|
</div>
|