mirror of
https://github.com/bitwarden/browser.git
synced 2024-10-29 07:59:42 +01:00
ec3c95d736
* [Icons] Update Font Sheet * Added import statement for styles * updated to clone icon * Changed save to save changes icon * Revert to using base bwi class * Updated import order for bwi icon styles * Converted new account switcher ui updates * Bump jslib * Fix occurances where bwi-eye-slash was used instead of btw-eye-slash-2 * Move settings cog to the left side * Updated eye/eye-slash icon references * Update jslib * Update jslib * Update fallback image for cipher icon * Update jslib Co-authored-by: Hinton <oscar@oscarhinton.com>
151 lines
5.1 KiB
HTML
151 lines
5.1 KiB
HTML
<form id="register-page" #form (ngSubmit)="submit()" [appApiAction]="formPromise">
|
|
<div class="content">
|
|
<h1>{{ "createAccount" | i18n }}</h1>
|
|
<div class="box">
|
|
<div class="box-content">
|
|
<div class="box-content-row" appBoxRow>
|
|
<label for="email">{{ "emailAddress" | i18n }}</label>
|
|
<input
|
|
id="email"
|
|
type="text"
|
|
name="Email"
|
|
[(ngModel)]="email"
|
|
required
|
|
[appAutofocus]="email === ''"
|
|
appInputVerbatim
|
|
/>
|
|
</div>
|
|
<div class="box-content-row" appBoxRow>
|
|
<div class="box-content-row-flex">
|
|
<div class="row-main">
|
|
<label for="masterPassword">
|
|
{{ "masterPass" | i18n }}
|
|
<strong
|
|
class="sub-label text-{{ masterPasswordScoreColor }}"
|
|
*ngIf="masterPasswordScoreText"
|
|
>
|
|
{{ masterPasswordScoreText }}
|
|
</strong>
|
|
</label>
|
|
<input
|
|
id="masterPassword"
|
|
type="{{ showPassword ? 'text' : 'password' }}"
|
|
name="MasterPassword"
|
|
class="monospaced"
|
|
[(ngModel)]="masterPassword"
|
|
required
|
|
[appAutofocus]="email !== ''"
|
|
(input)="updatePasswordStrength()"
|
|
appInputVerbatim
|
|
/>
|
|
</div>
|
|
<div class="action-buttons">
|
|
<a
|
|
class="row-btn"
|
|
href="#"
|
|
appStopClick
|
|
appBlurClick
|
|
role="button"
|
|
appA11yTitle="{{ 'toggleVisibility' | i18n }}"
|
|
(click)="togglePassword(false)"
|
|
>
|
|
<i
|
|
class="bwi bwi-lg"
|
|
aria-hidden="true"
|
|
[ngClass]="{ 'bwi-eye': !showPassword, 'bwi-eye-slash': showPassword }"
|
|
></i>
|
|
</a>
|
|
</div>
|
|
</div>
|
|
<div class="progress">
|
|
<div
|
|
class="progress-bar bg-{{ masterPasswordScoreColor }}"
|
|
role="progressbar"
|
|
aria-valuenow="0"
|
|
aria-valuemin="0"
|
|
aria-valuemax="100"
|
|
[ngStyle]="{ width: masterPasswordScoreWidth + '%' }"
|
|
attr.aria-valuenow="{{ masterPasswordScoreWidth }}"
|
|
></div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
<div class="box-footer">
|
|
{{ "masterPassDesc" | i18n }}
|
|
</div>
|
|
</div>
|
|
<div class="box">
|
|
<div class="box-content">
|
|
<div class="box-content-row box-content-row-flex" appBoxRow>
|
|
<div class="row-main">
|
|
<label for="masterPasswordRetype">{{ "reTypeMasterPass" | i18n }}</label>
|
|
<input
|
|
id="masterPasswordRetype"
|
|
type="{{ showPassword ? 'text' : 'password' }}"
|
|
name="MasterPasswordRetype"
|
|
class="monospaced"
|
|
[(ngModel)]="confirmMasterPassword"
|
|
required
|
|
appInputVerbatim
|
|
/>
|
|
</div>
|
|
<div class="action-buttons">
|
|
<a
|
|
class="row-btn"
|
|
href="#"
|
|
appStopClick
|
|
appBlurClick
|
|
role="button"
|
|
appA11yTitle="{{ 'toggleVisibility' | i18n }}"
|
|
(click)="togglePassword(true)"
|
|
>
|
|
<i
|
|
class="bwi bwi-lg"
|
|
aria-hidden="true"
|
|
[ngClass]="{ 'bwi-eye': !showPassword, 'bwi-eye-slash': showPassword }"
|
|
></i>
|
|
</a>
|
|
</div>
|
|
</div>
|
|
<div class="box-content-row" appBoxRow>
|
|
<label for="hint">{{ "masterPassHint" | i18n }}</label>
|
|
<input id="hint" type="text" name="Hint" [(ngModel)]="hint" />
|
|
</div>
|
|
<div class="box-content-row" [hidden]="!showCaptcha()">
|
|
<iframe id="hcaptcha_iframe" height="80"></iframe>
|
|
</div>
|
|
</div>
|
|
<div class="box-footer">
|
|
{{ "masterPassHintDesc" | i18n }}
|
|
</div>
|
|
</div>
|
|
<div class="box last" *ngIf="showTerms">
|
|
<div class="box-footer checkbox">
|
|
<input
|
|
type="checkbox"
|
|
id="acceptPolicies"
|
|
[(ngModel)]="acceptPolicies"
|
|
name="AcceptPolicies"
|
|
/>
|
|
<label for="acceptPolicies">
|
|
{{ "acceptPolicies" | i18n }}<br />
|
|
<a href="https://bitwarden.com/terms/" target="_blank" rel="noopener">{{
|
|
"termsOfService" | i18n
|
|
}}</a
|
|
>,
|
|
<a href="https://bitwarden.com/privacy/" target="_blank" rel="noopener">{{
|
|
"privacyPolicy" | i18n
|
|
}}</a>
|
|
</label>
|
|
</div>
|
|
</div>
|
|
<div class="buttons">
|
|
<button type="submit" class="btn primary block" [disabled]="form.loading" appBlurClick>
|
|
<b [hidden]="form.loading">{{ "submit" | i18n }}</b>
|
|
<i class="bwi bwi-spinner bwi-spin" [hidden]="!form.loading" aria-hidden="true"></i>
|
|
</button>
|
|
<a routerLink="/login" class="btn block">{{ "cancel" | i18n }}</a>
|
|
</div>
|
|
</div>
|
|
</form>
|