diff --git a/templates/dashboard/support.html b/templates/dashboard/support.html index ca4bf758..370c7975 100644 --- a/templates/dashboard/support.html +++ b/templates/dashboard/support.html @@ -3,94 +3,99 @@ {% set active_page = 'dashboard' %} {% block title %} - Support + Support {% endblock %} {% block head %} - + {% endblock %} {% block script %} - + $('.custom-file input').change(function (e) { + let files = []; + for (let i = 0; i < $(this)[0].files.length; i++) { + files.push($(this)[0].files[i].name); + } + $(this).next('.custom-file-label').html(files.join(', ')); + }); + {% endblock %} {% block default_content %} -
-
-
-
Report a problem
-
- If an email cannot be delivered to your mailbox, please check your notifications for error messages -
-
- A support ticket will be created in Zendesk. Please do not include any sensitive information in the ticket. -
-
-
- - -
-
- Attach files to support request -
-
Only images, text and emails are accepted
-
- - -
-
- Where can we reach you? -
-
- Conversations related to this ticket will be sent to this address. Feel free to use an alias here. -
-
- -
- -
-
-
- -
-
- -
+
+
+
+
Report a problem
+
+ If an email cannot be delivered to your mailbox, please check your + notifications for error messages
+
+ A support ticket will be created in Zendesk. Please do not include any sensitive information in the ticket. +
+
+
+ + +
+
+ Attach files to support request +
+
Only images, text and emails are accepted
+
+ + +
+
+ Where can we reach you? +
+
+ Conversations related to this ticket will be sent to this address. Feel free to use an alias here. +
+
+ +
+ +
+
+
+ +
+
+
+
+ {% endblock %}