{% extends "base.html" %} {% block title %}Profile{% endblock %} {% block content %}

Profile

{% if message %}
{{ message }}
{% endif %} {% if error %}
{{ error }}
{% endif %}

Account Information

Password

{% if user.has_password %}
{% else %}

You signed up using a social account. Set a password to enable email/password login.

{% endif %}
{% if user.oauth_providers %}

Connected Accounts

{% for provider in user.oauth_providers %}
{% if provider == 'google' %} {% elif provider == 'github' %} {% endif %} {{ provider | title }}
Connected
{% endfor %}
{% endif %}
{% endblock %}