From b4ecb63e432417fe5b656af46fa7cb92a6d9dadc Mon Sep 17 00:00:00 2001 From: Enstrayed <48845980+Enstrayed@users.noreply.github.com> Date: Mon, 26 May 2025 17:15:14 -0700 Subject: [PATCH] add more forms --- .../helpdesk/forms/ecls_passwordreset.json | 12 +++++++++++ .../forms/ecls_personalinfochange.json | 21 +++++++++++++++++++ .../forms/enstrayedcloud_quotachange.json | 14 +++++++++++++ website/helpdesk/forms/general_inquiry.json | 16 ++++++++++++++ website/helpdesk/forms/legalrequest.json | 5 +++++ 5 files changed, 68 insertions(+) create mode 100644 website/helpdesk/forms/ecls_passwordreset.json create mode 100644 website/helpdesk/forms/ecls_personalinfochange.json create mode 100644 website/helpdesk/forms/enstrayedcloud_quotachange.json create mode 100644 website/helpdesk/forms/general_inquiry.json create mode 100644 website/helpdesk/forms/legalrequest.json diff --git a/website/helpdesk/forms/ecls_passwordreset.json b/website/helpdesk/forms/ecls_passwordreset.json new file mode 100644 index 0000000..b894c8d --- /dev/null +++ b/website/helpdesk/forms/ecls_passwordreset.json @@ -0,0 +1,12 @@ +{ + "form": { + "description": { + "type": "span", + "content": "An Email will be sent to the address on your ECLS account with a link to reset your password.

If you cannot access that Email address, or you are locked out of your ECLS account for another reason (e.g. Lost 2FA method), please change the ticket type to 'ECLS: Account Recovery' instead. " + }, + "username": { + "type": "text", + "content": "What is your ECLS username?" + } + } +} \ No newline at end of file diff --git a/website/helpdesk/forms/ecls_personalinfochange.json b/website/helpdesk/forms/ecls_personalinfochange.json new file mode 100644 index 0000000..8cffd59 --- /dev/null +++ b/website/helpdesk/forms/ecls_personalinfochange.json @@ -0,0 +1,21 @@ +{ + "anonymousSubmission": false, + "form": { + "description": { + "type": "span", + "content": "Please enter the information you wish to change. You do not need to enter existing information if it will remain the same.

Important! If you request a username or Email address change, your access to services such as EOES or Jellyfin may be disrupted. You will be contacted in advance if this applies to you." + }, + "newusername": { + "type": "text", + "content": "New Username" + }, + "newdisplayname": { + "type": "text", + "content": "New Display Name" + }, + "newemail": { + "type": "text", + "content": "New Email Address" + } + } +} \ No newline at end of file diff --git a/website/helpdesk/forms/enstrayedcloud_quotachange.json b/website/helpdesk/forms/enstrayedcloud_quotachange.json new file mode 100644 index 0000000..7e03fc1 --- /dev/null +++ b/website/helpdesk/forms/enstrayedcloud_quotachange.json @@ -0,0 +1,14 @@ +{ + "anonymousSubmission": false, + "form": { + "description": { + "type": "span", + "content": "Important: " + }, + "newquota": { + "type": "text", + "content": "New quota (in GB)", + "required": true + } + } +} \ No newline at end of file diff --git a/website/helpdesk/forms/general_inquiry.json b/website/helpdesk/forms/general_inquiry.json new file mode 100644 index 0000000..ae5d662 --- /dev/null +++ b/website/helpdesk/forms/general_inquiry.json @@ -0,0 +1,16 @@ +{ + "form": { + "name": { + "type": "text", + "content": "What is your name?" + }, + "email": { + "type": "text", + "content": "What is a good email address to reach you at?" + }, + "message": { + "type": "bigtext", + "content": "Please enter your message below." + } + } +} \ No newline at end of file diff --git a/website/helpdesk/forms/legalrequest.json b/website/helpdesk/forms/legalrequest.json new file mode 100644 index 0000000..cd405c0 --- /dev/null +++ b/website/helpdesk/forms/legalrequest.json @@ -0,0 +1,5 @@ +{ + "form": { + + } +} \ No newline at end of file