0
Fork 0
mirror of https://github.com/TryGhost/Ghost.git synced 2025-01-20 22:42:53 -05:00

improve styling on private blogging password page (#7021)

refs TryGhost/Casper#253
- make private.hbs styling consistent with the ghost signin page
This commit is contained in:
Austin Burdine 2016-07-07 08:37:42 -06:00 committed by Kevin Ansfield
parent 9e93c2b6aa
commit a1a5e55bf7

View file

@ -29,24 +29,21 @@
<h1>This blog is private</h1>
</header>
<form class="gh-signin" method="post" novalidate="novalidate">
<div class="form-group">
<div class="form-group{{#if error}} error{{/if}}">
<span class="input-icon icon-lock">
{{input_password class="gh-input" placeholder="Password"}}
</span>
</div>
<button class="btn btn-blue btn-block" type="submit">Enter Now</button>
</form>
{{#if error}}
<p class="main-error">{{error.message}}</p>
{{/if}}
</section>
</div>
</div>
</main>
{{#if error}}
<aside class="gh-notifications">
<article class="gh-notification gh-notification-red">
<div id="gh-notification-content">{{error.message}}</div>
</article>
</aside>
{{/if}}
</div>
</div>
</body>