mirror of
https://github.com/TryGhost/Ghost.git
synced 2024-12-03 03:55:26 +03:00
9ed5aad186
no issue - the upcoming Module Unification re-organisation in Ember will no longer support nested components - this PR pre-emptively moves our usage of nested components into a flat file structure
21 lines
937 B
Handlebars
21 lines
937 B
Handlebars
<header class="modal-header">
|
|
<h1>Please re-authenticate</h1>
|
|
</header>
|
|
<a class="close" href="" title="Close" {{action "closeModal"}}>{{inline-svg "close"}}<span class="hidden">Close</span></a>
|
|
|
|
<div class="modal-body {{if authenticationError 'error'}}">
|
|
|
|
<form id="login" class="login-form" method="post" novalidate="novalidate" {{action "confirm" on="submit"}}>
|
|
{{#gh-validation-status-container class="password-wrap" errors=errors property="password" hasValidated=hasValidated}}
|
|
{{gh-input password class="password" type="password" placeholder="Password" name="password" update=(action (mut password))}}
|
|
{{/gh-validation-status-container}}
|
|
<div>
|
|
{{gh-task-button "Log in" task=reauthenticate class="gh-btn gh-btn-blue gh-btn-icon" type="submit"}}
|
|
</div>
|
|
</form>
|
|
|
|
{{#if authenticationError}}
|
|
<p class="response">{{authenticationError}}</p>
|
|
{{/if}}
|
|
</div>
|