diff --git a/app/templates/users/edit_profile_testing.html.j2 b/app/templates/users/edit_profile_testing.html.j2 new file mode 100644 index 00000000..88eb8fb5 --- /dev/null +++ b/app/templates/users/edit_profile_testing.html.j2 @@ -0,0 +1,236 @@ +{% extends "base.html.j2" %} +{% import "materialize/wtf.html.j2" as wtf %} + +{% block page_content %} +
+
+
+

{{ title }}

+
+
+
+
+ +
+
+
+ User Settings +
+
+ {{ edit_profile_settings_form.hidden_tag() }} + {{ wtf.render_field(edit_profile_settings_form.username, material_icon='person') }} + {{ wtf.render_field(edit_profile_settings_form.email, material_icon='email') }} +
+
+
+
+
+ {{ wtf.render_field(edit_profile_settings_form.submit, material_icon='send') }} +
+
+
+
+ +
+ {{ edit_privacy_settings_form.hidden_tag() }} +
+
+ Privacy settings +
+ {{ wtf.render_field(edit_privacy_settings_form.is_public, id='public-profile') }} +
+
+
+ {{ wtf.render_field(edit_privacy_settings_form.show_email, data_action='disable', disabled=true) }} +
+ {{ wtf.render_field(edit_privacy_settings_form.show_last_seen, data_action='disable', disabled=true) }} +
+ {{ wtf.render_field(edit_privacy_settings_form.show_member_since, data_action='disable', disabled=true) }} +
+
+
+
+ {{ wtf.render_field(edit_privacy_settings_form.submit, material_icon='send') }} +
+
+
+
+ +
+
+
+ {{ edit_public_profile_information_form.hidden_tag() }} +
+
+ Public Profile +
+
+
+
+
+
+
+ user-image +
+
+
+
+
+
+ delete +
+
+
+ {{ wtf.render_field(edit_public_profile_information_form.avatar, accept='image/jpeg, image/png, image/gif', placeholder='Choose an image file', id='avatar-upload') }} +
+
+
+
+

+
+ {{ wtf.render_field(edit_public_profile_information_form.full_name, material_icon='badge') }} + {{ wtf.render_field(edit_public_profile_information_form.about_me, material_icon='description') }} + {{ wtf.render_field(edit_public_profile_information_form.website, material_icon='laptop') }} + {{ wtf.render_field(edit_public_profile_information_form.organization, material_icon='business') }} + {{ wtf.render_field(edit_public_profile_information_form.location, material_icon='location_on') }} +
+
+
+
+
+ {{ wtf.render_field(edit_public_profile_information_form.submit, material_icon='send') }} +
+
+
+
+ +
+ {{ edit_notification_settings_form.hidden_tag() }} +
+
+ Notification settings + {{ wtf.render_field(edit_notification_settings_form.job_status_mail_notification_level, material_icon='notifications') }} +
+
+
+ {{ wtf.render_field(edit_notification_settings_form.submit, material_icon='send') }} +
+
+
+
+ +
+ {{ change_password_form.hidden_tag() }} +
+
+ Change Password + {{ 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') }} +
+
+
+
+ +
+
+ Delete account +

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.
  • +
+
+ +
+ +
+ +
+
+{% endblock page_content %} + +{% block modals %} + + +{% endblock modals %} + +{% block scripts %} +{{ super() }} + +{% endblock scripts %}