mirror of
https://github.com/TryGhost/Ghost.git
synced 2024-12-20 17:32:15 +03:00
9b87b4c40a
refs https://github.com/TryGhost/Team/issues/1477 - Very basic test only - Includes some extra test attributes in the components - Commented out a test that was not yet fininished
28 lines
994 B
Handlebars
28 lines
994 B
Handlebars
<div class="modal-content">
|
|
<header class="modal-header" data-test-modal="confirm-newsletter-email">
|
|
<h1>Confirm newsletter email address</h1>
|
|
</header>
|
|
<button type="button" class="close" role="button" title="Close" {{on "click" @close}}>{{svg-jar "close"}}<span class="hidden">Close</span></button>
|
|
|
|
<div class="modal-body">
|
|
<p>
|
|
We've sent a confirmation email to <strong>{{@data.newEmail}}</strong>.
|
|
Until the address has been verified newsletters will be sent from the
|
|
{{if @data.currentEmail "previous" "default"}} email address
|
|
({{full-email-address (or @data.currentEmail "noreply")}}).
|
|
</p>
|
|
</div>
|
|
|
|
<div class="modal-footer">
|
|
<button
|
|
type="button"
|
|
class="gh-btn"
|
|
data-test-button="confirm-newsletter-email"
|
|
{{on "click" @close}}
|
|
{{on-key "Enter"}}
|
|
>
|
|
<span>Ok</span>
|
|
</button>
|
|
</div>
|
|
</div>
|