mirror of
https://github.com/TryGhost/Ghost.git
synced 2025-01-13 22:41:32 -05:00
9fa666cba7
Closes #5459 - added a PNG background with 2 emails addresses as a "placeholder" - added a `required` attribute for textarea in 3rd step of the setup - taking an advantage of `:valid` pseudo-class to hide the background picture with email addresses
20 lines
792 B
Handlebars
20 lines
792 B
Handlebars
<section class="gh-flow-content">
|
||
<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"}}
|
||
</form>
|
||
|
||
<button {{action 'invite'}} class="btn btn-default btn-lg btn-block {{buttonClass}}">
|
||
{{buttonText}}
|
||
</button>
|
||
{{#link-to "posts" class="gh-flow-skip"}}
|
||
I'll do this later, take me to my blog!
|
||
{{/link-to}}
|
||
</section>
|