Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- {% extends 'base.html' %}
- {% load static %}
- {% block main_content %}
- <section id="delete-profile" class="auth">
- <div class="container">
- <h1>Are you sure you want to delete your profile?</h1>
- <form action="{% url 'delete profile' pk=object.pk %}" method="post">
- <input class="btn submit" type="submit" value="Yes">
- {% csrf_token %}
- </form>
- <div class="sure-buttons">
- <a class="edit-btn" href="javascript:history.back()">Go Back</a>
- </div>
- <!-- Общо изображение без конкретика -->
- <img src="{% static '#' %}" alt="Are you sure?">
- </div>
- </section>
- {% endblock %}
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement