mirror of
https://github.com/TryGhost/Ghost.git
synced 2024-12-23 02:41:50 +03:00
f86ff53a84
Merging setup screen into the new app wrapper had some knock-on effects due to new flexbox parent elements. As a result things were vertically collapsing in unexpected ways on narrow viewports. This is cleaned up here, with some other minor visual bugfixes.
22 lines
829 B
Handlebars
22 lines
829 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" placeholder="john@example.com
|
||
sally.sanders@example.com" value=users}}
|
||
</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>
|