diff --git a/Assorted_Notes/Ninjacat.md b/Assorted_Notes/Ninjacat.md new file mode 100644 index 00000000..74b69685 --- /dev/null +++ b/Assorted_Notes/Ninjacat.md @@ -0,0 +1,7 @@ +# NinjaCat + +## 12/18/2023 + +ChurnZero deal but having disco calls with CS AE/CAMs? +Gio Demaio joining as AE/CAM + diff --git a/Custom_Templates/customer_templates/.DS_Store b/Custom_Templates/customer_templates/.DS_Store index b458d049..30775215 100644 Binary files a/Custom_Templates/customer_templates/.DS_Store and b/Custom_Templates/customer_templates/.DS_Store differ diff --git a/Custom_Templates/customer_templates/Harri - New User/_account_avatar.html.liquid b/Custom_Templates/customer_templates/Harri - New User/_account_avatar.html.liquid new file mode 100644 index 00000000..cb40a1db --- /dev/null +++ b/Custom_Templates/customer_templates/Harri - New User/_account_avatar.html.liquid @@ -0,0 +1,66 @@ +
+

{% t .description %}

+

{% t .requirements %}

+
+ + + + +
+
+ +
+ +
+ +
+
+ +
+
diff --git a/Custom_Templates/customer_templates/Harri - New User/_account_form.html.liquid b/Custom_Templates/customer_templates/Harri - New User/_account_form.html.liquid new file mode 100644 index 00000000..1ce4e283 --- /dev/null +++ b/Custom_Templates/customer_templates/Harri - New User/_account_form.html.liquid @@ -0,0 +1,93 @@ +
+ {% t .header %} +
+
+ + +
+
+ + +
+
+ + +
+
+ + +
+
+ + +
+ +{% unless form.options.invite? %} +
+ + +
+{% endunless %} + +{% if form.options.invite? %} +
+ +
+ {% t .terms_of_service %} +
+
+ + +{% endif %} diff --git a/Custom_Templates/customer_templates/Harri - New User/_arabic_lang.html.liquid b/Custom_Templates/customer_templates/Harri - New User/_arabic_lang.html.liquid new file mode 100644 index 00000000..89eb1626 --- /dev/null +++ b/Custom_Templates/customer_templates/Harri - New User/_arabic_lang.html.liquid @@ -0,0 +1,468 @@ + \ No newline at end of file diff --git a/Custom_Templates/customer_templates/Harri - New User/_cards_course.html.liquid b/Custom_Templates/customer_templates/Harri - New User/_cards_course.html.liquid new file mode 100644 index 00000000..43c9a1be --- /dev/null +++ b/Custom_Templates/customer_templates/Harri - New User/_cards_course.html.liquid @@ -0,0 +1,47 @@ +
+
+ {% if course.ribbon %} +
+ {{ course.ribbon }} +
+ {% endif %} + {{ course.name }} +
+

+ {{ course.name }} +

+
+ {{ course.instructor_names }} +
+ +
+
+
diff --git a/Custom_Templates/customer_templates/Harri - New User/_cards_learning_path.html.liquid b/Custom_Templates/customer_templates/Harri - New User/_cards_learning_path.html.liquid new file mode 100644 index 00000000..c74f3e0c --- /dev/null +++ b/Custom_Templates/customer_templates/Harri - New User/_cards_learning_path.html.liquid @@ -0,0 +1,112 @@ +{%comment%}{% if learning_path.progress == 0%} + {% assign wrapperClassBar = "np-button-background-color np-card-progress-bar red-bar"%} + {% assign wrapperClassText = "np-card-content-progress np-button-color red-text"%} + {% assign wrapperClassStatus = "np-card-content-progress np-button-color red-text"%} +{% else if learning_path.progress > 0 and learning_path.progress < 100%} + {% assign wrapperClassBar = "np-button-background-color np-card-progress-bar yellow-bar"%} + {% assign wrapperClassText = "np-card-content-progress np-button-color yellow-text"%} + {% assign wrapperClassStatus = "np-card-content-progress np-button-color yellow-text"%} +{% else %} + {% assign wrapperClassBar = "np-button-background-color np-card-progress-bar green-bar"%} + {% assign wrapperClassText = "np-card-content-progress np-button-color green-text"%} + {% assign wrapperClassStatus = "np-card-content-progress np-button-color green-text"%} +{% endif %}{%endcomment%} + +{% if learning_path.enrolled? %} +{% assign lp_courses_count = 0 | times: 1 %} +{% assign sum_of_progress = 0.0 | times: 1 %} +{% for item in learning_path.items %} + {% if item.course? %} + {% assign lp_courses_count = lp_courses_count | plus: 1 %} + {% assign sum_of_progress = sum_of_progress | plus: item.progress %} + {% endif %} +{% endfor %} +{% if lp_courses_count == 0 %} + {% assign lp_progress = 0 %} +{% else %} + {% assign lp_progress = sum_of_progress | divided_by: lp_courses_count | round %} +{% endif %} +{% else %} +{% assign lp_progress = 0 %} +{% endif %} +{% comment %} +{% for group in current_person.groups %} + {{group.id}} +{% endfor %} {% endcomment %} + + +
+
+
+ {{ learning_path.name }} +
+
+ +
{% t shared.learning_path.title %}
+
+ {{ learning_path.items.count }} {% t .items %} +
+
+
+
{% t shared.learning_path.title %}
+ +
+ +
+

+ {{ learning_path.name }} +

+ +
+ {{ learning_path.instructor_names }} +
+ +
+ {{ learning_path.description }} +
+ + {% if lp_progress > 0 %} +
+

{{ lp_progress }}%

Complete

+
+ {% else %} +
+ Not started +
+ {% endif %} + +
+
+
+
+ + +
+
+
+
+
+
+
+
+
\ No newline at end of file diff --git a/Custom_Templates/customer_templates/Harri - New User/_course_activity_locked.html.liquid b/Custom_Templates/customer_templates/Harri - New User/_course_activity_locked.html.liquid new file mode 100644 index 00000000..011f9303 --- /dev/null +++ b/Custom_Templates/customer_templates/Harri - New User/_course_activity_locked.html.liquid @@ -0,0 +1,11 @@ + +{% assign activity_title = activity.title | split: ' ~ ' %} +{% if activity_title.size > 1 %} +
+ {{ activity_title[1] | strip }} +
+{% endif %} + + {{ activity_title[0] | strip }} + + diff --git a/Custom_Templates/customer_templates/Harri - New User/_course_activity_unlocked.html.liquid b/Custom_Templates/customer_templates/Harri - New User/_course_activity_unlocked.html.liquid new file mode 100644 index 00000000..be3b597d --- /dev/null +++ b/Custom_Templates/customer_templates/Harri - New User/_course_activity_unlocked.html.liquid @@ -0,0 +1,15 @@ +{% assign activity_title = activity.title | split: '~' %} +{% if activity_title.size > 1 %} +
+ {{ activity_title[1] | strip }} +
+{% endif %} + + {{ activity_title[0] | strip }} + diff --git a/Custom_Templates/customer_templates/Harri - New User/_course_outline.html.liquid b/Custom_Templates/customer_templates/Harri - New User/_course_outline.html.liquid new file mode 100644 index 00000000..fce14737 --- /dev/null +++ b/Custom_Templates/customer_templates/Harri - New User/_course_outline.html.liquid @@ -0,0 +1,191 @@ + +
+
+ {% t .header, key: current_school.course_vocabulary %} +
+
+
    + {% for section in course.sections %} + {% comment %}
  1. +
    + {{ section.name }} +
    +
      + {% for activity in section.activities %} + +
    1. + {% if activity.completed? %} + + {% if activity.locked? %} + {% include "course_activity_locked" %} + {% else %} + {% include "course_activity_unlocked", class: "np-course-outline-content-activity-link-completed" %} + {% endif %} +
      +
      + {% else %} + + {% if activity.locked? %} + {% include "course_activity_locked" %} + {% else %} + {% include "course_activity_unlocked", class: "np-course-outline-content-activity-link" %} + {% endif %} +
      + {% endif %} +
    2. + {% endfor %} +
    +
  2. {% endcomment %} +
    +
    + +
    +
    + {{ section.name }} +
    +
    +
    +
    +
    +
      + {% for activity in section.activities %} + +
    1. + {% if activity.completed? %} + + {% if activity.locked? %} + {% include "course_activity_locked" %} + {% else %} + {% include "course_activity_unlocked", class: "np-course-outline-content-activity-link-completed" %} + {% endif %} +
      + {%comment%}
      {%endcomment%} + {% else %} + + {% if activity.locked? %} + {% include "course_activity_locked" %} + {% else %} + {% include "course_activity_unlocked", class: "np-course-outline-content-activity-link" %} + {% endif %} +
      + {% endif %} +
    2. + {% endfor %} +
    +
    +
    +
    + {% endfor %} +
+
+
+ + + + + + \ No newline at end of file diff --git a/Custom_Templates/customer_templates/Harri - New User/_course_progress_and_cta.html.liquid b/Custom_Templates/customer_templates/Harri - New User/_course_progress_and_cta.html.liquid new file mode 100644 index 00000000..f2f12815 --- /dev/null +++ b/Custom_Templates/customer_templates/Harri - New User/_course_progress_and_cta.html.liquid @@ -0,0 +1,57 @@ +{%comment%}{% if course.progress == 0%} + {% assign wrapperClassBar = "np-button-background-color np-card-progress-bar red-bar"%} + {% assign wrapperClassStatus = "np-card-content-progress np-button-color red-text"%} +{% else if course.progress > 0 and course.progress < 100%} + {% assign wrapperClassBar = "np-button-background-color np-card-progress-bar yellow-bar"%} + {% assign wrapperClassStatus = "np-card-content-progress np-button-color yellow-text"%} +{% else %} + {% assign wrapperClassBar = "np-button-background-color np-card-progress-bar green-bar"%} + {% assign wrapperClassStatus = "np-card-content-progress np-button-color green-text"%} +{% endif %}{%endcomment%} + +
+
+ {% t .header %} +
+
+
+
+
+ +
+ {% t shared.progress, count: course.progress %} +
+
+ +{% if course.learner_can_retake? %} +
+ {% form_authenticity_token %} + +
+{% else %} + + {% if course.enrolled? == false %} + {% t shared.enroll %} + {% elsif course.started? == false %} + {% t shared.course.start, key: current_school.course_vocabulary %} + {% elsif course.completed? %} + {% t shared.course.view, key: current_school.course_vocabulary %} + {% else %} + {% t shared.continue %} + {% endif %} + +{% endif %} + diff --git a/Custom_Templates/customer_templates/Harri - New User/_footer.html.liquid b/Custom_Templates/customer_templates/Harri - New User/_footer.html.liquid new file mode 100644 index 00000000..4ac44fd3 --- /dev/null +++ b/Custom_Templates/customer_templates/Harri - New User/_footer.html.liquid @@ -0,0 +1,102 @@ + + + diff --git a/Custom_Templates/customer_templates/Harri - New User/_french_lang.html.liquid b/Custom_Templates/customer_templates/Harri - New User/_french_lang.html.liquid new file mode 100644 index 00000000..85785a09 --- /dev/null +++ b/Custom_Templates/customer_templates/Harri - New User/_french_lang.html.liquid @@ -0,0 +1,468 @@ + \ No newline at end of file diff --git a/Custom_Templates/customer_templates/Harri - New User/_head.html.liquid b/Custom_Templates/customer_templates/Harri - New User/_head.html.liquid new file mode 100644 index 00000000..f02b1b47 --- /dev/null +++ b/Custom_Templates/customer_templates/Harri - New User/_head.html.liquid @@ -0,0 +1,52 @@ +{% styles default %} +{% styles colors %} +{% styles custom %} + +{% unless current_person.email contains "preview" %} + + {% assign group_count = 0 %} + {% assign is_in_all_group = false %} + + {% if current_person.signed_in? %} + {% assign groups = current_person.groups %} + {% for item in groups %} + {% assign group_count = group_count | plus: 1 %} + {% if group_count <= 1 and item.id contains 'd8b83557-aad1-4a4e-85ee-ddbde5d1e507' %} + {% assign is_in_all_group = true %} + + {% endif %} + {% endfor %} + {% endif %} + + {% if current_person.signed_in? %} + {% for item in current_person.groups %} + {% endfor %} + {% if current_person.groups.any? %} + {% else %} + + {% endif %} + {% endif %} + +{% endunless %} + + \ No newline at end of file diff --git a/Custom_Templates/customer_templates/Harri - New User/_header.html.liquid b/Custom_Templates/customer_templates/Harri - New User/_header.html.liquid new file mode 100644 index 00000000..eef130e8 --- /dev/null +++ b/Custom_Templates/customer_templates/Harri - New User/_header.html.liquid @@ -0,0 +1,316 @@ +
+
+
+ {% if current_person.signed_in? %} + + + {% endif %} +
+ {% if current_school.logo_url %} +

+ + {{ current_school.name }} + +

+ {% else %} + + {{ current_school.name }} + + {% endif %} + +
+ +
+ + {% if current_person.signed_in? %} + {% assign current_language = "English" %} + {% if current_person.properties.language == "en" %} + {% assign current_language = "English" %} + {% elsif current_person.properties.language == "ru" %} + {% assign current_language = "Pусский" %} + {% elsif current_person.properties.language == "ar" %} + {% assign current_language = "عربي" %} + {% elsif current_person.properties.language == "fr" %} + {% assign current_language = "Français" %} + {% elsif current_person.properties.language == "es" %} + {% assign current_language = "Español" %} + {% endif %} + + + + {% endif %} + + {% if current_person.signed_in? %} + +
+ + +
+ {% else %} +
+ {% endif %} + +
+ +
+
+
+
+ +{% include "messages" %} +{% if current_person.signed_in? %} +{% assign lang = current_person.properties.language %} + +{% case lang %} + {% when "Spanish" %} + {% include "spanish_lang" %} +{% endcase %} + + + + + +{% endif %} + + diff --git a/Custom_Templates/customer_templates/Harri - New User/_learning_path_description.html.liquid b/Custom_Templates/customer_templates/Harri - New User/_learning_path_description.html.liquid new file mode 100644 index 00000000..c90eb1f0 --- /dev/null +++ b/Custom_Templates/customer_templates/Harri - New User/_learning_path_description.html.liquid @@ -0,0 +1,6 @@ +

+ {% t .about %} +

+
+ {{ learning_path.description }} +
diff --git a/Custom_Templates/customer_templates/Harri - New User/_learning_path_progress_and_cta.html.liquid b/Custom_Templates/customer_templates/Harri - New User/_learning_path_progress_and_cta.html.liquid new file mode 100644 index 00000000..940148e1 --- /dev/null +++ b/Custom_Templates/customer_templates/Harri - New User/_learning_path_progress_and_cta.html.liquid @@ -0,0 +1,49 @@ +{%comment%}{% if learning_path.progress == 0%} + {% assign wrapperClassBar = "np-button-background-color np-card-progress-bar red-bar"%} + {% assign wrapperClassStatus = "np-card-content-progress np-button-color red-text"%} +{% else if learning_path.progress > 0 and learning_path.progress < 100%} + {% assign wrapperClassBar = "np-button-background-color np-card-progress-bar yellow-bar"%} + {% assign wrapperClassStatus = "np-card-content-progress np-button-color yellow-text"%} +{% else %} + {% assign wrapperClassBar = "np-button-background-color np-card-progress-bar green-bar"%} + {% assign wrapperClassStatus = "np-card-content-progress np-button-color green-text"%} +{% endif %}{%endcomment%} + +{% if learning_path.enrolled? %} + {% assign lp_courses_count = 0 | times: 1 %} + {% assign sum_of_progress = 0.0 | times: 1 %} + {% for item in learning_path.items %} + {% if item.course? %} + {% assign lp_courses_count = lp_courses_count | plus: 1 %} + {% assign sum_of_progress = sum_of_progress | plus: item.progress %} + {% endif %} + {% endfor %} + {% if lp_courses_count == 0 %} + {% assign lp_progress = 0 %} + {% else %} + {% assign lp_progress = sum_of_progress | divided_by: lp_courses_count | round %} + {% endif %} +{% else %} + {% assign lp_progress = 0 %} +{% endif %} + +{% if learning_path.enrolled? %} +
+
+ {% t .progress %} +
+
+
+
+
+
+ {% t shared.progress, count: lp_progress %} +
+
+{% endif %} + +{% learning_path_next_step_button learning_path, class: "np-top-button np-button-font-color np-button np-button-big" %} diff --git a/Custom_Templates/customer_templates/Harri - New User/_learning_paths_index.html.liquid b/Custom_Templates/customer_templates/Harri - New User/_learning_paths_index.html.liquid new file mode 100644 index 00000000..693d143a --- /dev/null +++ b/Custom_Templates/customer_templates/Harri - New User/_learning_paths_index.html.liquid @@ -0,0 +1,55 @@ +{% assign swapped_groups = 'd1cc8cb4-fc5b-48b3-8e85-2f4faaf982dd, 0ecc1170-5761-4b5b-9047-5992232ceff4, 172784c9-7c26-4ffd-891f-4dbe8fda324f, 13765f3c-f1ee-4196-b846-1f07f63b3b64, c2caaef8-bebf-46b7-857b-79934a667495, 33842d33-6e9d-4dd6-a07c-49f2ce62b752, 011e1a52-beeb-4369-b030-a9ee3a0efe21, 216f8729-c6c6-4708-ad2c-fc732ef2d505, c1862cc1-a933-42bd-81cc-ebab4ec8d3d2' %} +{% assign is_in_group = false %} + + {% for group in current_person.groups %} + {% if swapped_groups contains group.id %} + {% assign is_in_group = true %} + {% break %} + {% endif %} + {% endfor %} + + {% if is_in_group%} +
+ {% if items.any? %} + {% for learning_path in items %} + {% if learning_path.name contains "Workforce"%} + {% include "cards_learning_path" with learning_path %} + {% endif %} + {% endfor %} + {% for learning_path in items %} + {% if learning_path.name contains "CoreHR"%} + {% include "cards_learning_path" with learning_path %} + {% endif %} + {% endfor %} + {% for learning_path in items %} + {% unless learning_path.name contains "CoreHR"%} + {% unless learning_path.name contains "Workforce"%} + {% include "cards_learning_path" with learning_path %} + {% endunless%} + {% endunless %} + {% endfor %} + {% else %} +
+
+ {% t .empty %} +
+ {% t .empty %} +
+ {% endif %} +
+ {%else%} +
+ {% if items.any? %} + {% for learning_path in items %} + {% include "cards_learning_path" with learning_path %} + {% endfor %} + {% else %} +
+
+ {% t .empty %} +
+ {% t .empty %} +
+ {% endif %} +
+ {% endif %} diff --git a/Custom_Templates/customer_templates/Harri - New User/_mcdonalds_theme.html.liquid b/Custom_Templates/customer_templates/Harri - New User/_mcdonalds_theme.html.liquid new file mode 100644 index 00000000..ef02451a --- /dev/null +++ b/Custom_Templates/customer_templates/Harri - New User/_mcdonalds_theme.html.liquid @@ -0,0 +1,29 @@ +{% if current_person.properties.company == "McDonalds" %} + + +{% endif %} diff --git a/Custom_Templates/customer_templates/Harri - New User/_russian_lang.html.liquid b/Custom_Templates/customer_templates/Harri - New User/_russian_lang.html.liquid new file mode 100644 index 00000000..9018c12a --- /dev/null +++ b/Custom_Templates/customer_templates/Harri - New User/_russian_lang.html.liquid @@ -0,0 +1,468 @@ + \ No newline at end of file diff --git a/Custom_Templates/customer_templates/Harri - New User/_spanish_lang.html.liquid b/Custom_Templates/customer_templates/Harri - New User/_spanish_lang.html.liquid new file mode 100644 index 00000000..499f5e19 --- /dev/null +++ b/Custom_Templates/customer_templates/Harri - New User/_spanish_lang.html.liquid @@ -0,0 +1,468 @@ + \ No newline at end of file diff --git a/Custom_Templates/customer_templates/Harri - New User/_sub_navigation.html.liquid b/Custom_Templates/customer_templates/Harri - New User/_sub_navigation.html.liquid new file mode 100644 index 00000000..d814e519 --- /dev/null +++ b/Custom_Templates/customer_templates/Harri - New User/_sub_navigation.html.liquid @@ -0,0 +1,13 @@ + diff --git a/Custom_Templates/customer_templates/Harri - New User/_training_events_zero_state.html.liquid b/Custom_Templates/customer_templates/Harri - New User/_training_events_zero_state.html.liquid new file mode 100644 index 00000000..1ecc4d78 --- /dev/null +++ b/Custom_Templates/customer_templates/Harri - New User/_training_events_zero_state.html.liquid @@ -0,0 +1,9 @@ +
+
+ {% t .empty %} +
+ {% t .empty %} +
diff --git a/Custom_Templates/customer_templates/Harri - New User/auth_url_email.html.liquid b/Custom_Templates/customer_templates/Harri - New User/auth_url_email.html.liquid new file mode 100644 index 00000000..c4c27a3b --- /dev/null +++ b/Custom_Templates/customer_templates/Harri - New User/auth_url_email.html.liquid @@ -0,0 +1,60 @@ +
+
+ {% include "header_minimal" %} +
+
+ {% form_authenticity_token %} +
+ {% t shared.welcome_to_school, school_name: current_school.name %} +
+
+ {% t .headline, key: current_school.course_vocabulary %} +
+
+ + +
+
+ + +
+
+ + +
+ +
+
+
+
diff --git a/Custom_Templates/customer_templates/Harri - New User/courses.html.liquid b/Custom_Templates/customer_templates/Harri - New User/courses.html.liquid new file mode 100644 index 00000000..a028acbf --- /dev/null +++ b/Custom_Templates/customer_templates/Harri - New User/courses.html.liquid @@ -0,0 +1,16 @@ + +{% include "header" %} +{% include "course_version_outdated_alert", courses: courses.enrolled %} +{% include "sub_navigation" %} +
+
+ {% t shared.course_vocabulary.plural, key: current_school.course_vocabulary %} +
+
{% t .headline, key: current_school.course_vocabulary %}
+ {% include "courses_index", class: "col-xs-12 col-sm-6 col-lg-4 np-stretch-content" %} +
+{% include "footer" %} diff --git a/Custom_Templates/customer_templates/Harri - New User/dashboard.html.liquid b/Custom_Templates/customer_templates/Harri - New User/dashboard.html.liquid new file mode 100644 index 00000000..5e4b9c86 --- /dev/null +++ b/Custom_Templates/customer_templates/Harri - New User/dashboard.html.liquid @@ -0,0 +1,28 @@ +{% include "header" %} + +{% include "sub_navigation" %} +
+
+
+ {% if features.learning_paths? %} +
+ {% t shared.learning_paths %} +
+ {% include "learning_paths_index", items: learning_paths.enrolled %} + {% endif %} +
+ {% t shared.course_vocabulary.plural, key: current_school.course_vocabulary %} +
+ {% include "courses_index", class: "col-xs-12 col-sm-6 np-stretch-content" %} +
+ {% if features.training_events? %} +
+
+ {% t .upcoming_events %} +
+ {% include "training_events_dashboard" %} +
+ {% endif %} +
+
+{% include "footer" %} \ No newline at end of file diff --git a/Custom_Templates/customer_templates/Harri - New User/learning_paths.html.liquid b/Custom_Templates/customer_templates/Harri - New User/learning_paths.html.liquid new file mode 100644 index 00000000..adaa84df --- /dev/null +++ b/Custom_Templates/customer_templates/Harri - New User/learning_paths.html.liquid @@ -0,0 +1,14 @@ +{% include "header" %} +{% include "sub_navigation" %} +
+
+
+ {% t shared.learning_paths %} +
+
+ {% t .subtitle %} +
+ {% include "learning_paths_index", items: learning_paths.available %} +
+
+{% include "footer" %} diff --git a/Custom_Templates/customer_templates/Harri - New User/master.html.liquid b/Custom_Templates/customer_templates/Harri - New User/master.html.liquid new file mode 100644 index 00000000..f4a68a10 --- /dev/null +++ b/Custom_Templates/customer_templates/Harri - New User/master.html.liquid @@ -0,0 +1,5 @@ +{% body %} + +{% if current_person.signed_in? %} + {% include "mcdonalds_theme" %} +{% endif %} diff --git a/Custom_Templates/customer_templates/Harri - New User/second-login.html.liquid b/Custom_Templates/customer_templates/Harri - New User/second-login.html.liquid new file mode 100644 index 00000000..8364bcf4 --- /dev/null +++ b/Custom_Templates/customer_templates/Harri - New User/second-login.html.liquid @@ -0,0 +1,341 @@ +{% assign group_count = 0 %} +{% assign groups = current_person.groups %} + +{% for item in groups %} + {% assign group_count = group_count | plus: 1 %} + {% if group_count >= 2 and item.id contains 'd8b83557-aad1-4a4e-85ee-ddbde5d1e507'%} + + {% endif %} +{% endfor %} + + {% include "header" %} +
+
+
+
+
Welcome!
+
Please choose the option that best matches your current role to enroll in the + appropriate learning path.
+ {% form_authenticity_token %} +
+ + +
+
Please provide your store number
+
+ + +
+
+ +
+
+
+ {% include "footer" %} + + + + + + + \ No newline at end of file diff --git a/Custom_Templates/customer_templates/Harri - New User/styles.css.liquid b/Custom_Templates/customer_templates/Harri - New User/styles.css.liquid new file mode 100644 index 00000000..542dea4f --- /dev/null +++ b/Custom_Templates/customer_templates/Harri - New User/styles.css.liquid @@ -0,0 +1,50 @@ + /* + Put your custom overlay styles in here + You can use your northpass color palette in this file + +{{ color_palette.button_font_color }} +{{ color_palette.button_color }} +{{ color_palette.button_hover_color }} +{{ color_palette.header_font_color }} +{{ color_palette.header_font_hover_color }} +{{ color_palette.header_color }} +*/ + +.red-bar{ + background: red; +} + +.red-text, +.red-status{ + color: red; +} + +.yellow-bar{ + background: yellow; +} + +.yellow-text, +.yellow-status{ + color: yellow; +} + +.green-bar{ + background: green; +} + +.green-text, +.green-status{ + color: green; +} + +.course-duration-lp { + color: #de352a; + font-size: .75rem; + font-weight: 900; + text-transform: uppercase; + margin-top: 5px; +} + +.text-center { + text-align: center; +} \ No newline at end of file diff --git a/Custom_Templates/customer_templates/Harri - New User/training_events.html.liquid b/Custom_Templates/customer_templates/Harri - New User/training_events.html.liquid new file mode 100644 index 00000000..239ef9e5 --- /dev/null +++ b/Custom_Templates/customer_templates/Harri - New User/training_events.html.liquid @@ -0,0 +1,19 @@ +{% include "header" %} +{% include "sub_navigation" %} +
+
+
+
+ {% t .title %} +
+
+ {% t .subtitle %} +
+
+
+ {% include "training_events_filter" %} +
+
+ {% include "training_events_index" %} +
+{% include "footer" %}