From 53f77435c23879bea2c1baf3d4afdcace97890aa Mon Sep 17 00:00:00 2001 From: Noor Syed Date: Mon, 2 Dec 2024 14:30:58 -0500 Subject: [PATCH] RDISCROWD-7741 add 423 template (#479) * add 423 template * change header * update * add public/private header --- templates/423.html | 30 ++++++++++++++++++++++++++++++ 1 file changed, 30 insertions(+) create mode 100644 templates/423.html diff --git a/templates/423.html b/templates/423.html new file mode 100644 index 00000000..c6ca15b1 --- /dev/null +++ b/templates/423.html @@ -0,0 +1,30 @@ +{% extends "base.html" %} +{% set active_page = "support" %} + +{% block content %} +
+
+
+

Unable to Access Project

+

Please confirm your project's password settings and assigned workers.

+ {% if private_instance %} +

Private GIGwork

+

Ask a project admin to ensure that you are assigned to the project.

+ {% else %} +

Public GIGwork

+

Ask a project admin to ensure that the project has a password set OR that you are assigned to the + project.

+ {% endif %} + +
+ +

For Admins:

+
    +
  1. To set a project password, Navigate to Project Settings → Project Details → Project Password.
  2. +
  3. To assign workers to the project, navigate to the Assign Workers tab in the top bar of the project + page.
  4. +
+
+
+
+{% endblock %}