base setup

This commit is contained in:
2026-01-07 12:09:20 +05:30
commit 0c275efea1
278 changed files with 11228 additions and 0 deletions

View File

@@ -0,0 +1,14 @@
{% extends 'base.html' %}
{% block title %}
Update Profile Picture
{% endblock %}
{% block content %}
<div class="container">
<h2>Update Profile Picture</h2>
<form method="POST" enctype="multipart/form-data">
{% csrf_token %}
{{ form.as_p }}
<button type="submit" class="btn btn-primary">Save changes</button>
</form>
</div>
{% endblock %}