22 lines
895 B
Handlebars
22 lines
895 B
Handlebars
<form id="main-form" method="post" action="/subscription/{{lcid}}/manage-address">
|
|
|
|
<input type="hidden" name="_csrf" value="{{csrfToken}}">
|
|
<input type="hidden" name="cid" value="{{cid}}">
|
|
|
|
<div class="form-group email">
|
|
<label for="EMAIL">Existing Email Address</label>
|
|
<input type="email" name="EMAIL" id="email" placeholder="" value="{{email}}" readonly>
|
|
</div>
|
|
|
|
<div class="form-group email">
|
|
<label for="EMAIL_NEW">New Email Address</label>
|
|
<input type="email" name="EMAIL_NEW" id="email-new" placeholder="Your new email address" value="{{email}}">
|
|
</div>
|
|
|
|
<p>
|
|
You will receive a confirmation request to your new email address that you need to accept before your email is actually changed
|
|
</p>
|
|
|
|
<button type="submit" style="position: absolute; top: -9999px; left: -9999px;">Update Email Address</button>
|
|
|
|
</form>
|