mirror of
https://github.com/Xevion/runnerspace.git
synced 2025-12-09 14:08:31 -06:00
13 lines
354 B
HTML
13 lines
354 B
HTML
{% extends 'layouts/index.html' %}
|
|
{% from 'macros.html' import render_field %}
|
|
|
|
{% block content %}
|
|
<h3>Edit Profile</h3>
|
|
<form method="POST" class="form">
|
|
{{ form.csrf_token }}
|
|
{{ render_field(form.name) }}
|
|
{{ render_field(form.about_me) }}
|
|
<input type="submit" value="Save & Submit">
|
|
</form>
|
|
{% endblock %}
|