Advertisement
horozov86

default delete_profile.html

Oct 21st, 2024
50
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Python 0.71 KB | None | 0 0
  1. {% extends 'base.html' %}
  2. {% load static %}
  3.  
  4. {% block main_content %}
  5. <section id="delete-profile" class="auth">
  6.     <div class="container">
  7.         <h1>Are you sure you want to delete your profile?</h1>
  8.  
  9.         <form action="{% url 'delete profile' pk=object.pk %}" method="post">
  10.             <input class="btn submit" type="submit" value="Yes">
  11.             {% csrf_token %}
  12.         </form>
  13.  
  14.         <div class="sure-buttons">
  15.             <a class="edit-btn" href="javascript:history.back()">Go Back</a>
  16.         </div>
  17.        
  18.         <!-- Общо изображение без конкретика -->
  19.         <img src="{% static '#' %}" alt="Are you sure?">
  20.     </div>
  21. </section>
  22. {% endblock %}
  23.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement