mirror of
https://github.com/TryGhost/Ghost.git
synced 2025-01-13 22:41:32 -05:00
748895ce77
closes #3928 - adds spin-button component & styles - implements spin-button in places where buttons trigger async tasks
18 lines
818 B
Handlebars
18 lines
818 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>
|
||
|
||
<img class="gh-flow-faces" src="{{gh-path 'admin' 'img/users.png'}}" alt="" />
|
||
|
||
<form class="gh-flow-invite">
|
||
<label>Enter one email address per line, we’ll handle the rest! <i class="icon-mail"></i></label>
|
||
{{textarea class="gh-input" name="users" value=users required="required"}}
|
||
{{gh-error-message errors=errors property="users"}}
|
||
</form>
|
||
|
||
{{gh-spin-button type="button" classNameBindings=":btn :btn-default :btn-lg :btn-block buttonClass" action="invite" buttonText=buttonText submitting=submitting autoWidth=false}}
|
||
|
||
<button class="gh-flow-skip" {{action "skipInvite"}}>
|
||
I'll do this later, take me to my blog!
|
||
</button>
|