{% extends 'mkt/base.html' %} {% from 'includes/forms.html' import required %} {% set title = _('Delete User Account') %} {% block title %}{{ mkt_page_title(title) }}{% endblock %} {% block content %} {{ mkt_breadcrumbs(product, [(url('account.settings'), _('Account Settings')), (None, title)]) }}

{{ title }}

{% if amouser.is_developer %}
{% trans link=url('mkt.developers.apps') %} You cannot delete your account if you are listed as an author of any apps. To delete your account, please have another person in your development group delete you from the list of authors for your apps. Afterwards you will be able to delete your account here. {% endtrans %}
{% else %} {% if form %}
{{ csrf() }}
{% trans %} By clicking "delete" your account is going to be permanently removed. That means:
  • You are deleting your account on both Mozilla Marketplace and addons.mozilla.org.
  • Your reviews and ratings will not be deleted, but they will no longer be associated with you.
{% endtrans %}

{{ form_field(form.confirm) }}

{% endif %} {% endif %}
{% endblock %}