{% extends "layout-right.html" %} {% macro sentence_case(text) %} {{ text[0]|upper}}{{text[1:] }} {% endmacro %} {% block header %} {% endblock header %} {% block content %}
PROJECTS
RECEIVED
GIVEN
{% if current_user.is_google_auth() %} {% else %} {% endif %}
{{ form.hidden_tag() }}
{{ 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 %} {% if not current_user.email_confirmed %} {{ form.email(class="form-control form-control-lg red") }} {% else %} {{ form.email(class="form-control form-control-lg") }} {% endif %} {% endif %} {% if not current_user.email_confirmed %}

Email not confirmed

{% endif %}
{{ form.location.label(class="form-control-label") }} {% if form.location.errors %} {{form.location(class="form-control form-control-lg is-invalid") }}
{% for error in form.location.errors %}
​ ​ {{ error }}
{% endfor %}
{% else %} {{ form.location(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", id="helloworld", style="width:180px; height: 50px; background-color: white; color: #007bff; border: none; ") }}
{% endblock content %} {% block sidebar %} {% endblock sidebar %}