diff options
Diffstat (limited to 'client/src/app/signup/signup.component.html')
-rw-r--r-- | client/src/app/signup/signup.component.html | 43 |
1 files changed, 0 insertions, 43 deletions
diff --git a/client/src/app/signup/signup.component.html b/client/src/app/signup/signup.component.html deleted file mode 100644 index ae3a595e9..000000000 --- a/client/src/app/signup/signup.component.html +++ /dev/null | |||
@@ -1,43 +0,0 @@ | |||
1 | <div class="margin-content"> | ||
2 | |||
3 | <div i18n class="title-page title-page-single"> | ||
4 | Create an account | ||
5 | </div> | ||
6 | |||
7 | |||
8 | <my-success *ngIf="signupDone"></my-success> | ||
9 | <div *ngIf="info" class="alert alert-info">{{ info }}</div> | ||
10 | <div *ngIf="success" class="alert alert-success">{{ success }}</div> | ||
11 | |||
12 | <div class="wrapper" *ngIf="!signupDone"> | ||
13 | <div> | ||
14 | <my-custom-stepper linear *ngIf="!signupDone"> | ||
15 | <cdk-step [stepControl]="formStepUser" i18n-label label="User information"> | ||
16 | <my-signup-step-user (formBuilt)="onUserFormBuilt($event)"></my-signup-step-user> | ||
17 | |||
18 | <button i18n cdkStepperNext [disabled]="!formStepUser || !formStepUser.valid">Next</button> | ||
19 | </cdk-step> | ||
20 | |||
21 | <cdk-step [stepControl]="formStepChannel" i18n-label label="Channel information"> | ||
22 | <my-signup-step-channel (formBuilt)="onChannelFormBuilt($event)" [username]="getUsername()"></my-signup-step-channel> | ||
23 | |||
24 | <button i18n cdkStepperNext (click)="signup()" | ||
25 | [disabled]="!formStepChannel || !formStepChannel.valid || hasSameChannelAndAccountNames()" | ||
26 | > | ||
27 | Create my account | ||
28 | </button> | ||
29 | </cdk-step> | ||
30 | |||
31 | <cdk-step i18n-label label="Done" editable="false"> | ||
32 | <div *ngIf="error" class="alert alert-danger">{{ error }}</div> | ||
33 | </cdk-step> | ||
34 | </my-custom-stepper> | ||
35 | </div> | ||
36 | |||
37 | <div> | ||
38 | <label i18n>Features found on this instance</label> | ||
39 | <my-instance-features-table></my-instance-features-table> | ||
40 | </div> | ||
41 | </div> | ||
42 | |||
43 | </div> | ||