{% extends "base.html.j2" %} {% import "materialize/wtf.html.j2" as wtf %} {% block page_content %}

{{ title }}

Profile Settings

Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos et accusam et justo duo dolores et ea rebum. Stet clita kasd gubergren, no sea tak


  • Profile Privacy Settings keyboard_arrow_right
  • Profile information keyboard_arrow_right
    {{ edit_profile_form.hidden_tag() }} {{ wtf.render_field(edit_profile_form.full_name, material_icon='badge') }} {{ wtf.render_field(edit_profile_form.about_me, material_icon='description', id='about-me-textfield') }} {{ wtf.render_field(edit_profile_form.website, material_icon='laptop') }} {{ wtf.render_field(edit_profile_form.organization, material_icon='business') }} {{ wtf.render_field(edit_profile_form.location, material_icon='location_on') }}

    user-image
    {{ wtf.render_field(edit_profile_form.avatar, accept='image/jpeg, image/png, image/gif', placeholder='Choose an image file', id='avatar-upload') }}

    {{ wtf.render_field(edit_profile_form.submit, material_icon='send') }}

General Settings

Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos et accusam et justo duo dolores et ea rebum. Stet clita kasd gubergren, no sea tak


  • Account keyboard_arrow_right
    {{ edit_account_form.hidden_tag() }} {{ wtf.render_field(edit_account_form.username, material_icon='person') }} {{ wtf.render_field(edit_account_form.email, material_icon='email') }}
    {{ wtf.render_field(edit_account_form.submit, material_icon='send') }}

    Deleting an account has the following effects:

    • All data associated with your corpora and jobs will be permanently deleted.
    • All settings will be permanently deleted.
  • Notifications keyboard_arrow_right
    {{ edit_notifications_form.hidden_tag() }} {{ wtf.render_field(edit_notifications_form.job_status_mail_notification_level, material_icon='notifications') }}
    {{ wtf.render_field(edit_notifications_form.submit, material_icon='send') }}
  • Change Password keyboard_arrow_right
    {{ change_password_form.hidden_tag() }} {{ wtf.render_field(change_password_form.password, material_icon='vpn_key') }} {{ wtf.render_field(change_password_form.new_password, material_icon='vpn_key') }} {{ wtf.render_field(change_password_form.new_password_2, material_icon='vpn_key') }}
    {{ wtf.render_field(change_password_form.submit, material_icon='send') }}
{% endblock page_content %} {% block modals %} {{ super() }} {% endblock modals %} {% block scripts %} {{ super() }} {% endblock scripts %}