You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
|
{% extends "base.html" %}
|
|
|
|
|
|
{% block content %}
|
|
|
<div class="container">
|
|
|
<h2>Reactivar cuenta</h2>
|
|
|
<p>Hola, {{ usuario.nombre }}. Para continuar usando nuestra plataforma, debes aceptar la política de privacidad.</p>
|
|
|
|
|
|
<form method="post">
|
|
|
{% csrf_token %}
|
|
|
<label>
|
|
|
<input type="checkbox" name="aceptar_politica" required>
|
|
|
Acepto la <a href="{% url 'politica_privacidad' %}" target="_blank">Política de Privacidad</a>
|
|
|
</label>
|
|
|
<br><br>
|
|
|
<button type="submit" class="btn btn-success">Aceptar y Reactivar</button>
|
|
|
</form>
|
|
|
</div>
|
|
|
{% endblock %}
|
|
|
|