base setup
This commit is contained in:
14
at_django_boilerplate/accounts/templates/profile/update_profile_picture.html
Executable file
14
at_django_boilerplate/accounts/templates/profile/update_profile_picture.html
Executable 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 %}
|
||||
Reference in New Issue
Block a user