42 lines
1.7 KiB
Plaintext
42 lines
1.7 KiB
Plaintext
<form accept-charset="UTF-8" action="<%- formAction %>" method="post" class="js-form">
|
|
<input name="utf8" type="hidden" value="✓" />
|
|
<input name="authenticity_token" type="hidden" value="<%- authenticityToken %>" />
|
|
<input name="_method" type="hidden" value="delete" />
|
|
|
|
<div class="CDB-Text Dialog-header u-inner">
|
|
<div class="Dialog-headerIcon Dialog-headerIcon--negative">
|
|
<i class="CDB-IconFont CDB-IconFont-defaultUser"></i>
|
|
</div>
|
|
<p class="Dialog-headerTitle">You are about to delete your account.</p>
|
|
<p class="Dialog-headerText">
|
|
Remember, once you delete your account there is no going back.<br/>
|
|
All your maps, data and work will be lost. Are you sure you want to proceed?<br/>
|
|
<% if (passwordNeeded) { %>
|
|
In any case, you need to type your password.
|
|
<% } %>
|
|
</p>
|
|
</div>
|
|
|
|
<% if (passwordNeeded) { %>
|
|
<div class="CDB-Text Dialog-body">
|
|
<div class="Form-row Form-row--centered has-label">
|
|
<div class="Form-rowLabel">
|
|
<label class="Form-label">Your password</label>
|
|
</div>
|
|
<div class="Form-rowData">
|
|
<input type="password" autocomplete="off" name="deletion_password_confirmation" class="CDB-InputText CDB-Text Form-input Form-input--long" value=""/>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
<% } %>
|
|
|
|
<div class="Dialog-footer u-inner">
|
|
<button type="button" class="CDB-Button CDB-Button--secondary cancel">
|
|
<span class="CDB-Button-Text CDB-Text is-semibold CDB-Size-small u-upperCase">Cancel</span>
|
|
</button>
|
|
<button type="submit" class="CDB-Button CDB-Button--error js-ok">
|
|
<span class="CDB-Button-Text CDB-Text is-semibold CDB-Size-small u-upperCase">Yes, delete my account</span>
|
|
</button>
|
|
</div>
|
|
</form>
|