42 lines
1.9 KiB
Plaintext
42 lines
1.9 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 organization.</p>
|
|
<p class="Dialog-headerText">
|
|
You will remove this organization and all its users (including this account)<br/>
|
|
and it will not be possible to recover its information (including tables and data) after this deletion.<br/>
|
|
<% if (passwordNeeded) { %>
|
|
If you want to proceed, type your password:<br/>
|
|
<% } %>
|
|
</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 the organization</span>
|
|
</button>
|
|
</div>
|
|
</form>
|