{% extends 'base.html' %} {% from '_macros.html' import form_field %} {% block title %}Edit profile ยท TradeHub{% endblock %} {% block content %}
{{ current_user.username }}
{{ current_user.username }} {{ current_user.email }}
{{ form.hidden_tag() }} {{ form_field(form.username) }}
0 / 300
{{ form.avatar(class="form-input") }}
Change password
Cancel {{ form.submit(class="btn btn-primary") }}
{% endblock %}