{% extends "mobile-layout.html" %} {% macro sentence_case(text) %} {{ text[0]|upper}}{{text[1:] }} {% endmacro %} {% block content %}
Share Profile Tweet
PROJECTS
RECEIVED
GIVEN
{{ form.hidden_tag() }}

Profile Settings

{{ form.picture.label(class="form-control-label", style="font-size: 18px") }} {{ form.picture(class="form-control-file") }} {% if form.picture.errors %} {% for error in form.picture.errors %} {{ error }}
{% endfor %} {% endif %}
{{ form.username.label(class="form-control-label") }} {% if form.username.errors %} {{ form.username(class="form-control form-control-lg is-invalid") }}
{% for error in form.username.errors %}
​ ​ {{ error }}
{% endfor %}
{% else %} {{ form.username(class="form-control form-control-lg") }} {% endif %}
{{ form.email.label(class="form-control-label") }} {% if form.email.errors %} {{ form.email(class="form-control form-control-lg is-invalid") }}
{% for error in form.email.errors %}
​ ​ {{ error }}
{% endfor %}
{% else %} {{ form.email(class="form-control form-control-lg") }} {% endif %}

Email Settings

{{ form.sub_stars(style="width: 30px; height: 30px;") }}
{{ form.sub_stars.label(class="form-control-label no-margin-bottom") }}
{{ form.sub_comments(style="width: 30px; height: 30px;") }}
{{ form.sub_comments.label(class="form-control-label no-margin-bottom") }}
{{ form.sub_project_posts(style="width: 30px; height: 30px;") }}
{{ form.sub_project_posts.label(class="form-control-label no-margin-bottom") }}
{{ form.sub_updates(style="width: 30px; height: 30px;") }}
{{ form.sub_updates.label(class="form-control-label no-margin-bottom") }}
{{ form.sub_newsletter(style="width: 30px; height: 30px;") }}
{{ form.sub_newsletter.label(class="form-control-label no-margin-bottom") }}
{{ form.submit(class="btn btn-success", style="width: 100%; height: 50px; background-color: white; color: #007bff; border: none;") }}
{% endblock content %}