1
0
mirror of https://github.com/bitwarden/browser synced 2026-01-19 00:43:25 +00:00

Implement create account step (#3073)

This commit is contained in:
Robyn MacCallum
2022-07-11 11:06:32 -04:00
committed by GitHub
parent c0bcdf4637
commit 5ed6b9fb74
4 changed files with 32 additions and 9 deletions

View File

@@ -28,12 +28,13 @@
Start your 7-Day free trial of Bitwarden for {{ org }}
</h2>
</div>
<app-vertical-stepper linear>
<app-vertical-stepper #stepper linear>
<!-- Content is for demo purposes. Replace with form components for each step-->
<app-vertical-step label="Create Account" [editable]="false">
<!-- Replace content with Registration step -->
<p>This is content of "Step 1" that has editable set to false</p>
<button bitButton buttonType="primary" cdkStepperNext>Complete step</button>
<app-vertical-step label="Create Account" [editable]="false" [subLabel]="email">
<app-register-form
[isInTrialFlow]="true"
(createdAccount)="createdAccount($event)"
></app-register-form>
</app-vertical-step>
<app-vertical-step label="Create Organization" subLabel="It better be a good org">
<!-- Replace with Org creation step -->