9 lines
214 B
HTML
9 lines
214 B
HTML
<!DOCTYPE html>
|
|
{% extends "base.html" %}
|
|
{% block content %}
|
|
<h2>{{ user.username }}'s Profile</h2>
|
|
<img src="{{user.avatar}}">
|
|
<form method="post">
|
|
{% csrf_token %}
|
|
</form>
|
|
{% endblock %}
|