2022-04-13 21:34:48 +03:00
|
|
|
<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"
|
2022-04-28 11:50:27 +03:00
|
|
|
data-test-button="confirm-newsletter-email"
|
2022-04-13 21:34:48 +03:00
|
|
|
{{on "click" @close}}
|
|
|
|
{{on-key "Enter"}}
|
|
|
|
>
|
|
|
|
<span>Ok</span>
|
|
|
|
</button>
|
|
|
|
</div>
|
2022-04-28 11:50:27 +03:00
|
|
|
</div>
|