mirror of
https://github.com/TryGhost/Ghost.git
synced 2024-11-25 09:03:12 +03:00
81 lines
4.1 KiB
Handlebars
81 lines
4.1 KiB
Handlebars
<div class="gh-flow">
|
|
|
|
<div class="gh-flow-content-wrap">
|
|
<section class="gh-flow-content">
|
|
<header>
|
|
<div class="gh-site-icon" style={{site-icon-style}}></div>
|
|
<h1>Create your account.</h1>
|
|
</header>
|
|
|
|
<form id="signup" class="gh-signup" method="post" novalidate="novalidate" onsubmit={{action "submit"}}>
|
|
<GhFormGroup @errors={{this.signupDetails.errors}} @hasValidated={{this.signupDetails.hasValidated}} @property="name">
|
|
<label for="name">Full name</label>
|
|
<span class="gh-input-icon gh-icon-user">
|
|
<GhTrimFocusInput
|
|
@tabindex="1"
|
|
@type="text"
|
|
@id="display-name"
|
|
@name="display-name"
|
|
@placeholder="Jamie Larson"
|
|
@autocorrect="off"
|
|
@autocomplete="name"
|
|
@value={{readonly this.signupDetails.name}}
|
|
@input={{action (mut this.signupDetails.name) value="target.value"}}
|
|
@focus-out={{action "validate" "name"}}
|
|
data-test-input="name"
|
|
/>
|
|
</span>
|
|
<GhErrorMessage @errors={{this.signupDetails.errors}} @property="name" />
|
|
</GhFormGroup>
|
|
|
|
<GhFormGroup @errors={{this.signupDetails.errors}} @hasValidated={{this.signupDetails.hasValidated}} @property="email">
|
|
<label for="email">Email address</label>
|
|
<span class="gh-input-icon gh-icon-mail">
|
|
<GhTextInput
|
|
@tabindex="2"
|
|
@type="text"
|
|
@id="username"
|
|
@name="username"
|
|
@placeholder="jamie@example.com"
|
|
@autocorrect="off"
|
|
@autocomplete="username email"
|
|
@value={{readonly this.signupDetails.email}}
|
|
@input={{action (mut this.signupDetails.email) value="target.value"}}
|
|
@focus-out={{action "validate" "email"}}
|
|
data-test-input="email"
|
|
/>
|
|
</span>
|
|
<GhErrorMessage @errors={{this.signupDetails.errors}} @property="email" />
|
|
</GhFormGroup>
|
|
|
|
<GhFormGroup @errors={{this.signupDetails.errors}} @hasValidated={{this.signupDetails.hasValidated}} @property="password">
|
|
<label for="password">Password</label>
|
|
<span class="gh-input-icon gh-icon-lock">
|
|
<GhTextInput
|
|
@tabindex="3"
|
|
@type="password"
|
|
@id="password"
|
|
@name="password"
|
|
@placeholder="At least 10 characters"
|
|
@autocorrect="off"
|
|
@autocomplete="new-password"
|
|
@value={{readonly this.signupDetails.password}}
|
|
@input={{action (mut this.signupDetails.password) value="target.value"}}
|
|
@focus-out={{action "validate" "password"}}
|
|
data-test-input="password"
|
|
/>
|
|
</span>
|
|
<GhErrorMessage @errors={{this.signupDetails.errors}} @property="password" />
|
|
</GhFormGroup>
|
|
|
|
<GhTaskButton @buttonText="Create Account →" @type="submit" @form="signup" @defaultClick={{true}} @runningText="Creating"
|
|
@task={{this.signup}} @data-test-button="signup" @class="gh-btn gh-btn-signup gh-btn-block gh-btn-icon" @tabindex="3" style={{accent-color-background}} />
|
|
</form>
|
|
{{#if this.flowErrors}}
|
|
<p class="main-error">{{this.flowErrors}} </p>
|
|
{{/if}}
|
|
</section>
|
|
</div>
|
|
|
|
</div>
|