mirror of
https://github.com/TryGhost/Ghost.git
synced 2024-12-27 12:53:13 +03:00
05940b7b83
refs #7503 - Having assets served from the same directory as the admin makes this tricky to refactor server side - It's also much harder to optimise for 404s
20 lines
951 B
Handlebars
20 lines
951 B
Handlebars
<header>
|
||
<h1>Invite your team</h1>
|
||
<p>Ghost works best when shared with others. Collaborate, get feedback on your posts & work together on ideas.</p>
|
||
</header>
|
||
|
||
<div><img class="gh-flow-faces" src="{{gh-path 'asset' 'img/users.png'}}" alt="" /></div>
|
||
|
||
<form class="gh-flow-invite">
|
||
{{#gh-form-group errors=errors hasValidated=hasValidated property="users"}}
|
||
<label for="users">Enter one email address per line, we’ll handle the rest! <i class="icon-mail"></i></label>
|
||
{{gh-textarea users name="users" required="required" focusOut=(action "validate") update=(action (mut users))}}
|
||
{{/gh-form-group}}
|
||
|
||
{{#gh-spin-button type="submit" action="invite" classNameBindings=":btn :btn-default :btn-lg :btn-block buttonClass" submitting=submitting autoWidth="false"}}{{buttonText}}{{/gh-spin-button}}
|
||
</form>
|
||
|
||
<button class="gh-flow-skip" {{action "skipInvite"}}>
|
||
I'll do this later, take me to my blog!
|
||
</button>
|