19 lines
617 B
HTML
19 lines
617 B
HTML
{% extends "base.html" %}
|
|
{% import 'bootstrap/wtf.html' as wtf %}
|
|
|
|
{% block app_content %}
|
|
<h1>{{ _('Edit Profile') }}</h1>
|
|
<div class="row">
|
|
<div class="col-md-4">
|
|
{{ wtf.quick_form(form) }}
|
|
</div>
|
|
</div>
|
|
<div class="row">
|
|
<div class="col-md-12">
|
|
<h2>{{ _('Change Avatar') }}</h2>
|
|
<p>{{ _('Use Gravatar to manage your profile image that appears on this site and other sites that support Gravatar.') }}</p>
|
|
<p><a href="https://en.gravatar.com/emails/" target="_blank">{{ _('Manage Your Gravatar') }}</a></p>
|
|
</div>
|
|
</div>
|
|
{% endblock %}
|