diff --git a/Custom_Templates/customer_templates/.DS_Store b/Custom_Templates/customer_templates/.DS_Store index 4277853c..3e5d497b 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/Artera_sandbox/_cards_course.html.liquid b/Custom_Templates/customer_templates/Artera_sandbox/_cards_course.html.liquid new file mode 100644 index 00000000..c5687e00 --- /dev/null +++ b/Custom_Templates/customer_templates/Artera_sandbox/_cards_course.html.liquid @@ -0,0 +1,32 @@ +{% capture course_path %}{% route course, id: course.id %}{% endcapture %} +
+
+ + {{ course.name }} + + +

+ {% if course.categories %} + {% for course_category in course.categories %} + + {{ course_category.name }} + + {% endfor %} + {% endif %} +

+ +
+ + {{ course.name }} + +
+ +

{{ course.short_description }}

+
+
+ diff --git a/Custom_Templates/customer_templates/Artera_sandbox/_catalog_filters.html.liquid b/Custom_Templates/customer_templates/Artera_sandbox/_catalog_filters.html.liquid new file mode 100644 index 00000000..56200b21 --- /dev/null +++ b/Custom_Templates/customer_templates/Artera_sandbox/_catalog_filters.html.liquid @@ -0,0 +1,117 @@ +
+
+ +
+ All Courses + {% for category in categories.in_catalog %} + {{ category.name }} + {% endfor %} +
+
+
+ + + + \ No newline at end of file diff --git a/Custom_Templates/customer_templates/Artera_sandbox/_completed_courses_index.html.liquid b/Custom_Templates/customer_templates/Artera_sandbox/_completed_courses_index.html.liquid new file mode 100644 index 00000000..8e634ef0 --- /dev/null +++ b/Custom_Templates/customer_templates/Artera_sandbox/_completed_courses_index.html.liquid @@ -0,0 +1,42 @@ +{% if courses.enrolled.any? %} + {% assign completed_courses = courses.enrolled | map: "completed?" %} + {% assign any_completed = false %} + + {% for completed_course in completed_courses %} + {% if completed_course %} + {% assign any_completed = true %} + {% endif %} + {% endfor %} + + {% if any_completed %} + {% assign any_course = false %} +
+ {% for course in courses.enrolled %} + {% if course.completed? %} + {% assign is_course_from_learning_path = false %} + {% for lp_courses in learning_path_courses %} + {% for lp_course in lp_courses %} + {% if lp_course.id == course.id %} + {% assign is_course_from_learning_path = true %} + {% endif %} + {% endfor %} + {% endfor %} + + {% unless is_course_from_learning_path %} +
+ {% include "cards_course" with course %} +
+ {% assign any_course = true %} + {% endunless %} + {% endif %} + {% endfor %} +
+ {% unless any_course %} + {% include "courses_zero_state", message: "Yikes! You don’t have any Completed Courses." %} + {% endunless %} + {% else %} + {% include "courses_zero_state", message: "Yikes! You don’t have any Completed Courses." %} + {% endif %} +{% else %} + {% include "courses_zero_state", message: "Yikes! You don’t have any Completed Courses." %} +{% endif %} diff --git a/Custom_Templates/customer_templates/Artera_sandbox/_completed_learning_paths_index.html.liquid b/Custom_Templates/customer_templates/Artera_sandbox/_completed_learning_paths_index.html.liquid new file mode 100644 index 00000000..042c211d --- /dev/null +++ b/Custom_Templates/customer_templates/Artera_sandbox/_completed_learning_paths_index.html.liquid @@ -0,0 +1,34 @@ +
+ {% if items.any? %} + {% assign completed_learning_paths = items | map: "completed?" %} + {% assign any_completed = false %} + + {% for completed_learning_path in completed_learning_paths %} + {% if completed_learning_path %} + {% assign any_completed = true %} + {% endif %} + {% endfor %} + + {% if any_completed %} + {% for learning_path in items %} + {% if learning_path.completed? %} + {% include "cards_learning_path" with learning_path %} + {% endif %} + {% endfor %} + {% else %} +
+
+ Bummer! You don't have any Completed Learning Paths. +
+ {% t .empty %} +
+ {% endif %} + {% else %} +
+
+ Bummer! You don't have any Completed Learning Paths. +
+ {% t .empty %} +
+ {% endif %} +
diff --git a/Custom_Templates/customer_templates/Artera_sandbox/_courses_catalog.html.liquid b/Custom_Templates/customer_templates/Artera_sandbox/_courses_catalog.html.liquid new file mode 100644 index 00000000..17841fda --- /dev/null +++ b/Custom_Templates/customer_templates/Artera_sandbox/_courses_catalog.html.liquid @@ -0,0 +1,28 @@ +{% if courses.in_catalog.any? %} +
+ {% for course in courses.in_catalog %} +
+ {% include "cards_course" with course %} +
+ {% endfor %} +
+{% else %} + {% capture message %} + {% t shared.zero_state.courses.catalog, + key: current_school.course_vocabulary + %} + {% endcapture %} + {% include "courses_zero_state", message: message %} +{% endif %} + + \ No newline at end of file diff --git a/Custom_Templates/customer_templates/Artera_sandbox/_enrolled_courses_index.html.liquid b/Custom_Templates/customer_templates/Artera_sandbox/_enrolled_courses_index.html.liquid new file mode 100644 index 00000000..222e7012 --- /dev/null +++ b/Custom_Templates/customer_templates/Artera_sandbox/_enrolled_courses_index.html.liquid @@ -0,0 +1,42 @@ +{% if courses.enrolled.any? %} + {% assign in_progress_courses = courses.enrolled | map: "progress" %} + {% assign any_not_in_progress = false %} + + {% for in_progress_course in in_progress_courses %} + {% if in_progress_course == 0 %} + {% assign any_not_in_progress = true %} + {% endif %} + {% endfor %} + + {% if any_not_in_progress %} + {% assign any_course = false %} +
+ {% for course in courses.enrolled %} + {% if course.progress == 0 %} + {% assign is_course_from_learning_path = false %} + {% for lp_courses in learning_path_courses %} + {% for lp_course in lp_courses %} + {% if lp_course.id == course.id %} + {% assign is_course_from_learning_path = true %} + {% endif %} + {% endfor %} + {% endfor %} + + {% unless is_course_from_learning_path %} +
+ {% include "cards_course" with course %} +
+ {% assign any_course = true %} + {% endunless %} + {% endif %} + {% endfor %} +
+ {% unless any_course %} + {% include "courses_zero_state", message: "Yikes! You don’t have any Enrolled Courses." %} + {% endunless %} + {% else %} + {% include "courses_zero_state", message: "Yikes! You don’t have any Enrolled Courses." %} + {% endif %} +{% else %} + {% include "courses_zero_state", message: "Yikes! You don’t have any Enrolled Courses." %} +{% endif %} diff --git a/Custom_Templates/customer_templates/Artera_sandbox/_enrolled_learning_paths_index.html.liquid b/Custom_Templates/customer_templates/Artera_sandbox/_enrolled_learning_paths_index.html.liquid new file mode 100644 index 00000000..947582f3 --- /dev/null +++ b/Custom_Templates/customer_templates/Artera_sandbox/_enrolled_learning_paths_index.html.liquid @@ -0,0 +1,35 @@ +
+ {% if items.any? %} + {% assign in_progress_learning_paths = items | map: "progress" %} + {% assign any_not_in_progress = false %} + + {% for in_progress_learning_path in in_progress_learning_paths %} + {% if in_progress_learning_path == 0 %} + {% assign any_not_in_progress = true %} + {% endif %} + {% endfor %} + + + {% if any_not_in_progress %} + {% for learning_path in items %} + {% if learning_path.progress == 0 %} + {% include "cards_learning_path" with learning_path %} + {% endif %} + {% endfor %} + {% else %} +
+
+ Bummer! You're not assigned any Learning Paths. +
+ {% t .empty %} +
+ {% endif %} + {% else %} +
+
+ Bummer! You're not assigned any Learning Paths. +
+ {% t .empty %} +
+ {% endif %} +
diff --git a/Custom_Templates/customer_templates/Artera_sandbox/_footer.html.liquid b/Custom_Templates/customer_templates/Artera_sandbox/_footer.html.liquid new file mode 100644 index 00000000..4dcd713b --- /dev/null +++ b/Custom_Templates/customer_templates/Artera_sandbox/_footer.html.liquid @@ -0,0 +1,212 @@ + + + \ No newline at end of file diff --git a/Custom_Templates/customer_templates/Artera_sandbox/_header.html.liquid b/Custom_Templates/customer_templates/Artera_sandbox/_header.html.liquid new file mode 100644 index 00000000..d4f6224c --- /dev/null +++ b/Custom_Templates/customer_templates/Artera_sandbox/_header.html.liquid @@ -0,0 +1,252 @@ +
+
+
+ {% if current_person.signed_in? %} + + + {% endif %} +
+ {% if current_school.logo_url %} +
+

+ + {{ current_school.name }} + +

+ + {% include "sub_navigation" %} +
+ +

+ + {{ current_school.name }} + +

+ + {% else %} + + {{ current_school.name }} + + {% endif %} + +
+ +
+ + {% if current_person.signed_in? %} + +
+ + +
+ {% else %} +
+ {% endif %} + + {% include 'my_courses_filter' %} +
+ +
+
+
+
+ + +{% include "messages" %} + + \ No newline at end of file diff --git a/Custom_Templates/customer_templates/Artera_sandbox/_in_progress_courses_index.html.liquid b/Custom_Templates/customer_templates/Artera_sandbox/_in_progress_courses_index.html.liquid new file mode 100644 index 00000000..d39f87b1 --- /dev/null +++ b/Custom_Templates/customer_templates/Artera_sandbox/_in_progress_courses_index.html.liquid @@ -0,0 +1,51 @@ +{% if courses.enrolled.any? %} + {% assign started_courses = courses.enrolled | map: "started?" %} + {% assign in_progress_courses = courses.enrolled | map: "progress" %} + {% assign learning_path_courses = learning_paths.enrolled | map: 'items'%} + {% assign any_started = false %} + {% assign any_in_progress = false %} + + {% for started_course in started_courses %} + {% if started_course == true %} + {% assign any_started = true %} + {% endif %} + {% endfor %} + + {% for in_progress_course in in_progress_courses %} + {% if in_progress_course > 0 and in_progress_course < 100 %} + {% assign any_in_progress = true %} + {% endif %} + {% endfor %} + + {% if any_started and any_in_progress %} + {% assign any_course = false %} +
+ {% for course in courses.enrolled %} + {% if course.progress > 0 and course.progress < 100 %} + {% assign is_course_from_learning_path = false %} + {% for lp_courses in learning_path_courses %} + {% for lp_course in lp_courses %} + {% if lp_course.id == course.id %} + {% assign is_course_from_learning_path = true %} + {% endif %} + {% endfor %} + {% endfor %} + + {% unless is_course_from_learning_path %} +
+ {% include "cards_course" with course %} +
+ {% assign any_course = true %} + {% endunless %} + {% endif %} + {% endfor %} +
+ {% unless any_course %} + {% include "courses_zero_state", message: "Yikes! You don’t have any In Progress Courses." %} + {% endunless %} + {% else %} + {% include "courses_zero_state", message: "Yikes! You don’t have any In Progress Courses." %} + {% endif %} +{% else %} + {% include "courses_zero_state", message: "Yikes! You don’t have any In Progress Courses." %} +{% endif %} diff --git a/Custom_Templates/customer_templates/Artera_sandbox/_in_progress_learning_paths_index.html.liquid b/Custom_Templates/customer_templates/Artera_sandbox/_in_progress_learning_paths_index.html.liquid new file mode 100644 index 00000000..79197f1b --- /dev/null +++ b/Custom_Templates/customer_templates/Artera_sandbox/_in_progress_learning_paths_index.html.liquid @@ -0,0 +1,42 @@ +
+ {% if items.any? %} + {% assign started_learning_paths = items | map: "started?" %} + {% assign in_progress_learning_paths = items | map: "progress" %} + {% assign any_started = false %} + {% assign any_in_progress = false %} + + {% for started_learning_path in started_learning_paths %} + {% if started_learning_path == true %} + {% assign any_started = true %} + {% endif %} + {% endfor %} + + {% for in_progress_learning_path in in_progress_learning_paths %} + {% if in_progress_learning_path > 0 and in_progress_learning_path < 100 %} + {% assign any_in_progress = true %} + {% endif %} + {% endfor %} + + {% if any_started and any_in_progress %} + {% for learning_path in items %} + {% if learning_path.progress > 0 and learning_path.progress < 100 %} + {% include "cards_learning_path" with learning_path %} + {% endif %} + {% endfor %} + {% else %} +
+
+ Bummer! You don't have any In Progress Learning Paths. +
+ {% t .empty %} +
+ {% endif %} + {% else %} +
+
+ Bummer! You don't have any In Progress Learning Paths. +
+ {% t .empty %} +
+ {% endif %} +
diff --git a/Custom_Templates/customer_templates/Artera_sandbox/_my_courses_filter.html.liquid b/Custom_Templates/customer_templates/Artera_sandbox/_my_courses_filter.html.liquid new file mode 100644 index 00000000..63c14480 --- /dev/null +++ b/Custom_Templates/customer_templates/Artera_sandbox/_my_courses_filter.html.liquid @@ -0,0 +1,119 @@ + + + + + \ No newline at end of file diff --git a/Custom_Templates/customer_templates/Artera_sandbox/_sub_navigation.html.liquid b/Custom_Templates/customer_templates/Artera_sandbox/_sub_navigation.html.liquid new file mode 100644 index 00000000..3af0c1e0 --- /dev/null +++ b/Custom_Templates/customer_templates/Artera_sandbox/_sub_navigation.html.liquid @@ -0,0 +1,43 @@ + + + + + \ No newline at end of file diff --git a/Custom_Templates/customer_templates/Artera_sandbox/_training_session_cta.html.liquid b/Custom_Templates/customer_templates/Artera_sandbox/_training_session_cta.html.liquid new file mode 100644 index 00000000..b3253fa8 --- /dev/null +++ b/Custom_Templates/customer_templates/Artera_sandbox/_training_session_cta.html.liquid @@ -0,0 +1,11 @@ +
+
+
+ +
+
+
diff --git a/Custom_Templates/customer_templates/Artera_sandbox/catalog.html.liquid b/Custom_Templates/customer_templates/Artera_sandbox/catalog.html.liquid new file mode 100644 index 00000000..24e961c2 --- /dev/null +++ b/Custom_Templates/customer_templates/Artera_sandbox/catalog.html.liquid @@ -0,0 +1,26 @@ +{% include "header" %} +{% include "course_version_outdated_alert", courses: courses.in_catalog %} +
+
+
+
+
{{ catalog.headline }}
+
{{ catalog.subheadline }}
+
+ {% include 'catalog_filters' %} +
+ {% capture label %}{% t shared.filters.by_category %}{% endcapture %} +
+ {% include "courses_catalog" %} +
+{% include "footer" %} + + diff --git a/Custom_Templates/customer_templates/Artera_sandbox/course.html.liquid b/Custom_Templates/customer_templates/Artera_sandbox/course.html.liquid new file mode 100644 index 00000000..421ebdae --- /dev/null +++ b/Custom_Templates/customer_templates/Artera_sandbox/course.html.liquid @@ -0,0 +1,18 @@ +{% include "header" %} +
+
+ {% include "course_desktop_view" %} +
+
+ {% include "course_mobile_view" %} +
+
+{% include "footer" %} + + \ No newline at end of file diff --git a/Custom_Templates/customer_templates/Artera_sandbox/dashboard.html.liquid b/Custom_Templates/customer_templates/Artera_sandbox/dashboard.html.liquid new file mode 100644 index 00000000..01ae374d --- /dev/null +++ b/Custom_Templates/customer_templates/Artera_sandbox/dashboard.html.liquid @@ -0,0 +1,90 @@ +{% include "header" %} +{% include "course_version_outdated_alert", courses: courses.enrolled %} +{% include "sub_navigation" %} + + {% assign courses_classes = "col-xs-12 col-sm-6 np-stretch-content" %} +{% else %} + {% assign courses_classes = "col-xs-12 col-sm-4 np-stretch-content" %} +{% endif %} + +
+
+
+ {% if features.learning_paths? %} +
+
+ In Progress Learning Paths +
+ {% include "in_progress_learning_paths_index", items: learning_paths.enrolled %} +
+ +
+
+ Enrolled Learning Paths +
+ {% include "enrolled_learning_paths_index", items: learning_paths.enrolled %} +
+ +
+
+ Completed Learning Paths +
+ {% include "completed_learning_paths_index", items: learning_paths.enrolled %} +
+ {% endif %} + +
+
+ In progress courses +
+ {% include "in_progress_courses_index", class: courses_classes %} +
+ +
+
+ Enrolled Courses +
+ {% include "enrolled_courses_index", class: courses_classes %} +
+ +
+
+ Completed Courses +
+ {% include "completed_courses_index", class: courses_classes %} +
+
+ + {% if features.training_events? %} +
+
+ {% t .upcoming_events %} +
+ {% include "training_events_dashboard" %} +
+ {% endif %} +
+
+{% include "footer" %} + + + + diff --git a/Custom_Templates/customer_templates/Artera_sandbox/homepage.html.liquid b/Custom_Templates/customer_templates/Artera_sandbox/homepage.html.liquid new file mode 100644 index 00000000..82305e11 --- /dev/null +++ b/Custom_Templates/customer_templates/Artera_sandbox/homepage.html.liquid @@ -0,0 +1,171 @@ +{% include "header" %} +{% include "course_version_outdated_alert", courses: courses.featured %} +
+
+ {{ homepage.headline }} +
+
+ {{ homepage.headline }} +
+
+ {{ homepage.subheadline }} +
+ + {% t .discover %} + +
+
+ {% include "sub_navigation" %} + +
+{% include "footer" %} + + + + + + + \ No newline at end of file diff --git a/Custom_Templates/customer_templates/Artera_sandbox/styles.css.liquid b/Custom_Templates/customer_templates/Artera_sandbox/styles.css.liquid new file mode 100644 index 00000000..f8c54e33 --- /dev/null +++ b/Custom_Templates/customer_templates/Artera_sandbox/styles.css.liquid @@ -0,0 +1,127 @@ + /* + 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 }} +*/ + +@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap'); + +html *:not(i) { + font-family: 'Poppins', sans-serif !important; +} + +body, .np-main { + background: #fff; +} + +.np-main { + padding: 220px 20px 32px; +} + +@media screen and (min-width: 768px) { + .np-main { + padding: 200px 5% 184px; + } +} + +/* Course Cards */ + +.course-card { + cursor: pointer; + background-color: #f5f2ff; + border-radius: 30px; + box-shadow: none; + padding: 24px 24px 44px; + transition: .2s; + width: 100%; +} + +.course-card:hover, .course-card:focus { + box-shadow: 10px 10px 20px 0 rgb(62 51 102 / 20%); +} + +.course-card-container { + display: flex; + width: 100%; +} + +.course-card-container > * { + transition: .2s; +} + +.course-image { + border-radius: 15px; + display: block; + margin-bottom: 16px; + overflow: hidden; + padding-top: 72%; + position: relative; + width: 100%; +} + +.course-image img { + bottom: 0; + height: 100%; + left: 0; + object-fit: cover; + position: absolute; + right: 0; + top: 0; + width: 100%; + max-width: 100%; +} + +.course-categories-container { + font-size: 10px; + font-weight: 500; + margin: 0; +} + +.course-name { + font-weight: 500; + letter-spacing: 1px; + line-height: normal; + margin: 20px 0 0; + font-size: 18px; +} + +.course-name a { + text-decoration: none; + color: #000; +} + +.course-category { + background-color: #ffe7e1; + color: #ff7676; + border-radius: 4px; + font-weight: 500; + margin-right: 8px; + padding: 4px 8px; + text-transform: uppercase; + transition: .2s; + text-decoration: none; +} + +@media (min-width: 768px) { + .course-card { + padding: 24px 24px 35px; + } + + .course-card-container { + padding: 0 12px; + } + + .course-image { + padding-top: 66%; + } + + .course-name { + font-size: 20px; + } +} \ No newline at end of file diff --git a/Custom_Templates/customer_templates/HackerRank Internal/_cards_learning_path.html.liquid b/Custom_Templates/customer_templates/HackerRank Internal/_cards_learning_path.html.liquid new file mode 100644 index 00000000..cdc870e9 --- /dev/null +++ b/Custom_Templates/customer_templates/HackerRank Internal/_cards_learning_path.html.liquid @@ -0,0 +1,102 @@ +{% comment %}This section of code will iterate over all courses in a learning path and average out the completion per course compared to the total of the LP {% endcomment %} +{% assign total_progress = 0 %} +{% assign completed_progress = 0 %} + +{% for item in learning_path.items %} + {% if item.course? %} + {% assign total_progress = total_progress | plus: 100 %} + + {% assign completed_progress = completed_progress | plus: item.progress %} + {% endif %} +{% endfor %} + +{% assign total_progress = total_progress | times: 0.01 %} +{% assign calculated_progress = completed_progress | divided_by: total_progress %} + +
+
+
+ {{ 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 }} +
+ +
+ {% comment %}{% t shared.progress, count: learning_path.progress %}{% endcomment %} + {% if calculated_progress < 1 %} + Not Started + {% else %} + {{calculated_progress | ceil }}% Completed + {% endif %} +
+ +
+
+
+
+ + +
+
+
+
+
+
+
+
+
+ + \ No newline at end of file diff --git a/Custom_Templates/customer_templates/HackerRank Internal/_learning_path_outline.html.liquid b/Custom_Templates/customer_templates/HackerRank Internal/_learning_path_outline.html.liquid new file mode 100644 index 00000000..45a9ad08 --- /dev/null +++ b/Custom_Templates/customer_templates/HackerRank Internal/_learning_path_outline.html.liquid @@ -0,0 +1,15 @@ +
+ {% for item in learning_path.items %} + {% if item.course? %} + {% include "learning_path_course", course: item %} + {% elsif item.training_event? %} + {% include "learning_path_training_session", training_session: item %} + {% endif %} + {% endfor %} +
+ + \ No newline at end of file diff --git a/Custom_Templates/customer_templates/HackerRank Internal/_sub_navigation.html.liquid b/Custom_Templates/customer_templates/HackerRank Internal/_sub_navigation.html.liquid new file mode 100644 index 00000000..d10d6176 --- /dev/null +++ b/Custom_Templates/customer_templates/HackerRank Internal/_sub_navigation.html.liquid @@ -0,0 +1,28 @@ + diff --git a/Custom_Templates/customer_templates/HackerRank Internal/catalog.html.liquid b/Custom_Templates/customer_templates/HackerRank Internal/catalog.html.liquid new file mode 100644 index 00000000..907226bb --- /dev/null +++ b/Custom_Templates/customer_templates/HackerRank Internal/catalog.html.liquid @@ -0,0 +1,63 @@ +{% include "header" %} +{% include "course_version_outdated_alert", courses: courses.in_catalog %} +{% include "sub_navigation" %} +
+
+
+
{{ catalog.headline }}
+
{{ catalog.subheadline }}
+
+ {% capture label %}{% t shared.filters.by_category %}{% endcapture %} + + {% if courses.in_catalog.any? %} + {% + include "filter_dropdown", + filters: courses.filters, + key: "category_uuid", + label: label + %} + {% endif %} +
+ {% include "courses_catalog" %} +
+{% include "footer" %} + + \ No newline at end of file diff --git a/Custom_Templates/customer_templates/HackerRank Internal/course.html.liquid b/Custom_Templates/customer_templates/HackerRank Internal/course.html.liquid new file mode 100644 index 00000000..2403c3da --- /dev/null +++ b/Custom_Templates/customer_templates/HackerRank Internal/course.html.liquid @@ -0,0 +1,24 @@ + + {% if course.enrolled? %} + + + {% else %} + + + {% endif %} + +{% comment %} {% include "header" %} +
+
+ {% include "course_desktop_view" %} +
+
+ {% include "course_mobile_view" %} +
+
+{% include "footer" %} {% endcomment %} diff --git a/Custom_Templates/customer_templates/HackerRank Internal/homepage.html.liquid b/Custom_Templates/customer_templates/HackerRank Internal/homepage.html.liquid new file mode 100644 index 00000000..03c64f86 --- /dev/null +++ b/Custom_Templates/customer_templates/HackerRank Internal/homepage.html.liquid @@ -0,0 +1,47 @@ +{% include "header" %} +{% include "course_version_outdated_alert", courses: courses.featured %} +
+
+ {{ homepage.headline }} +
+
+ {{ homepage.headline }} +
+
+ {{ homepage.subheadline }} +
+ + {% t .discover %} + +
+
+ {% include "sub_navigation" %} + +
+{% include "footer" %} diff --git a/CustomerNotes/Artsy.md b/CustomerNotes/Artsy.md index 9e5b512a..58bb5c90 100644 --- a/CustomerNotes/Artsy.md +++ b/CustomerNotes/Artsy.md @@ -1,17 +1,21 @@ ## 10/19/2022 + * Ellen, Marketplace Support lead * Wants to use for onboarding training -* New to artsy, 3 months, bad onboarding experience -* Has a new person started in November and wants to use training on Northpass. -* Specifcally creating her own training for her team. +* New to artsy, 3 months, bad onboarding experience +* Has a new person started in November and wants to use training on Northpass. +* Specifcally creating her own training for her team. ## 11/10/2022 + ### Contract & Training/Gating Discussion + *Training and Gating Topics* -* BambooHR > Northpass + +* BambooHR > Northpass * They are not using milestones to block SCORM content * They are understanding the difference between gated content with a SCORM file and Northpass -* Taught them how to setup milestones. +* Taught them how to setup milestones. * "Where does OpenSesame end and Northpass begin?" -* They may want to test and replace courses with ones that you cannot scrub or skip through videos. -* +* They may want to test and replace courses with ones that you cannot scrub or skip through videos. +* diff --git a/Scripts/.DS_Store b/Scripts/.DS_Store index 7ed49bee..db39dcb2 100644 Binary files a/Scripts/.DS_Store and b/Scripts/.DS_Store differ diff --git a/Scripts/API_Tests/assignCoursetoGroups.py b/Scripts/API_Tests/assignCoursetoGroups.py index 2074da73..33fb382f 100644 --- a/Scripts/API_Tests/assignCoursetoGroups.py +++ b/Scripts/API_Tests/assignCoursetoGroups.py @@ -2,64 +2,62 @@ import requests apiKey = "Bknf8kidbluRfcKu3m3lKoxS8" groups = [ - "Armonk", - "Babylon", - "Bayside", - "Bedford", - "Cutchogue", - "East Hampton", - "East Setauket", - "Executive", - "Farmingville", - "Franklin Square", - "Garden City", - "Great Neck", - "Greenport", - "Hampton Bays", - "Hamptons", - "Huntington", - "Huntington Station", - "Katonah", - "Locust Valley", - "Long Beach", - "Long Island", - "Long Island City", - "Manhasset", - "Manhattan", - "Massapequa Park", - "Mattituck", - "Merrick", - "Montauk", - "New Hyde Park", - "New York", - "North Fork", - "Ocean Beach", - "Plainview", - "Port Washington", - "Queens", - "Quogue", - "Rockville Centre", - "Roslyn", - "Sag Harbor", - "Sayville", - "Scarsdale", - "Sea Cliff", - "Smithtown", - "Southampton", - "Syosset", - "Westchester", - "Westhampton Beach" - ] + "Armonk", + "Babylon", + "Bayside", + "Bedford", + "Cutchogue", + "East Hampton", + "East Setauket", + "Executive", + "Farmingville", + "Franklin Square", + "Garden City", + "Great Neck", + "Greenport", + "Hampton Bays", + "Hamptons", + "Huntington", + "Huntington Station", + "Katonah", + "Locust Valley", + "Long Beach", + "Long Island", + "Long Island City", + "Manhasset", + "Manhattan", + "Massapequa Park", + "Mattituck", + "Merrick", + "Montauk", + "New Hyde Park", + "New York", + "North Fork", + "Ocean Beach", + "Plainview", + "Port Washington", + "Queens", + "Quogue", + "Rockville Centre", + "Roslyn", + "Sag Harbor", + "Sayville", + "Scarsdale", + "Sea Cliff", + "Smithtown", + "Southampton", + "Syosset", + "Westchester", + "Westhampton Beach", +] + def findgroupIDs(apiKey, groups): groupuuids = [] badGroups = [] for group in groups: url = "https://api.northpass.com/v2/groups?filter[name][eq]=" - headers = { - "accept": "application/json", - "X-Api-Key": apiKey - } + headers = {"accept": "application/json", "X-Api-Key": apiKey} response = requests.get(url + group, headers=headers) response = response.json() try: @@ -69,26 +67,22 @@ def findgroupIDs(apiKey, groups): badGroups.append(group) finally: pass - #print(badGroups) - #print(groupuuids) - assignCourse(apiKey,url, groupuuids) + # print(badGroups) + # print(groupuuids) + assignCourse(apiKey, url, groupuuids) + def assignCourse(apiKey, url, groupuuids): for group in groupuuids: - try: + try: url = f"https://api.northpass.com/v2/groups/{group}/relationships/courses" courseuuid = "10e9b174-cbad-4caa-b0ff-1a7338f2345a" headers = { "accept": "application/json", "content-type": "application/json", - "X-Api-Key": apiKey + "X-Api-Key": apiKey, } - payload = {"data": [ - { - "type": "courses", - "id": courseuuid - } - ]} + payload = {"data": [{"type": "courses", "id": courseuuid}]} print(f"Group {group} successfully accepted the course") response = requests.post(url, json=payload, headers=headers) except: @@ -96,5 +90,6 @@ def assignCourse(apiKey, url, groupuuids): finally: pass + if __name__ == "__main__": findgroupIDs(apiKey, groups) diff --git a/Scripts/Backup/.DS_Store b/Scripts/Backup/.DS_Store new file mode 100644 index 00000000..c9710538 Binary files /dev/null and b/Scripts/Backup/.DS_Store differ diff --git a/Scripts/Backup/2022 tax filing FAQs_1.png b/Scripts/Backup/2022 tax filing FAQs_1.png new file mode 100644 index 00000000..467bd179 Binary files /dev/null and b/Scripts/Backup/2022 tax filing FAQs_1.png differ diff --git a/Scripts/Backup/2022 tax filing FAQs_2.png b/Scripts/Backup/2022 tax filing FAQs_2.png new file mode 100644 index 00000000..9fc92a2e Binary files /dev/null and b/Scripts/Backup/2022 tax filing FAQs_2.png differ diff --git a/Scripts/Backup/2022 tax filing FAQs_3.png b/Scripts/Backup/2022 tax filing FAQs_3.png new file mode 100644 index 00000000..71579eb5 Binary files /dev/null and b/Scripts/Backup/2022 tax filing FAQs_3.png differ diff --git a/Scripts/Backup/2022 tax filing FAQs_4.png b/Scripts/Backup/2022 tax filing FAQs_4.png new file mode 100644 index 00000000..5aa49afc Binary files /dev/null and b/Scripts/Backup/2022 tax filing FAQs_4.png differ diff --git a/Scripts/Backup/2022 tax filing FAQs_5.png b/Scripts/Backup/2022 tax filing FAQs_5.png new file mode 100644 index 00000000..a5635964 Binary files /dev/null and b/Scripts/Backup/2022 tax filing FAQs_5.png differ diff --git a/Scripts/Backup/2022 tax filing FAQs_6.png b/Scripts/Backup/2022 tax filing FAQs_6.png new file mode 100644 index 00000000..ce02b82b Binary files /dev/null and b/Scripts/Backup/2022 tax filing FAQs_6.png differ diff --git a/Scripts/Backup/2022 tax filing FAQs_7.png b/Scripts/Backup/2022 tax filing FAQs_7.png new file mode 100644 index 00000000..de137d40 Binary files /dev/null and b/Scripts/Backup/2022 tax filing FAQs_7.png differ diff --git a/Scripts/Backup/2022 tax filing FAQs_8.png b/Scripts/Backup/2022 tax filing FAQs_8.png new file mode 100644 index 00000000..5d8f59a0 Binary files /dev/null and b/Scripts/Backup/2022 tax filing FAQs_8.png differ diff --git a/Scripts/Backup/Branch Wallet FAQs_1.png b/Scripts/Backup/Branch Wallet FAQs_1.png new file mode 100644 index 00000000..eca83faa Binary files /dev/null and b/Scripts/Backup/Branch Wallet FAQs_1.png differ diff --git a/Scripts/Backup/Branch Wallet FAQs_2.png b/Scripts/Backup/Branch Wallet FAQs_2.png new file mode 100644 index 00000000..d573ebe4 Binary files /dev/null and b/Scripts/Backup/Branch Wallet FAQs_2.png differ diff --git a/Scripts/Backup/Branch Wallet FAQs_3.png b/Scripts/Backup/Branch Wallet FAQs_3.png new file mode 100644 index 00000000..1abe6f7c Binary files /dev/null and b/Scripts/Backup/Branch Wallet FAQs_3.png differ diff --git a/Scripts/Backup/Branch Wallet FAQs_4.png b/Scripts/Backup/Branch Wallet FAQs_4.png new file mode 100644 index 00000000..2ee14e09 Binary files /dev/null and b/Scripts/Backup/Branch Wallet FAQs_4.png differ diff --git a/Scripts/Backup/Branch Wallet FAQs_5.png b/Scripts/Backup/Branch Wallet FAQs_5.png new file mode 100644 index 00000000..e89000bc Binary files /dev/null and b/Scripts/Backup/Branch Wallet FAQs_5.png differ diff --git a/Scripts/Backup/Branch Wallet FAQs_6.png b/Scripts/Backup/Branch Wallet FAQs_6.png new file mode 100644 index 00000000..5e3ad852 Binary files /dev/null and b/Scripts/Backup/Branch Wallet FAQs_6.png differ diff --git a/Scripts/Backup/Branch Wallet FAQs_7.png b/Scripts/Backup/Branch Wallet FAQs_7.png new file mode 100644 index 00000000..a0ddab8d Binary files /dev/null and b/Scripts/Backup/Branch Wallet FAQs_7.png differ diff --git a/Scripts/Backup/Branch Wallet FAQs_8.png b/Scripts/Backup/Branch Wallet FAQs_8.png new file mode 100644 index 00000000..ba9a5251 Binary files /dev/null and b/Scripts/Backup/Branch Wallet FAQs_8.png differ diff --git a/Scripts/Backup/Branch Wallet FAQs_9.png b/Scripts/Backup/Branch Wallet FAQs_9.png new file mode 100644 index 00000000..c2086f07 Binary files /dev/null and b/Scripts/Backup/Branch Wallet FAQs_9.png differ diff --git a/Scripts/Backup/Curious how trip earnings work?_1.png b/Scripts/Backup/Curious how trip earnings work?_1.png new file mode 100644 index 00000000..6aebb1bc Binary files /dev/null and b/Scripts/Backup/Curious how trip earnings work?_1.png differ diff --git a/Scripts/Backup/Curious how trip earnings work?_2.png b/Scripts/Backup/Curious how trip earnings work?_2.png new file mode 100644 index 00000000..d6421dac Binary files /dev/null and b/Scripts/Backup/Curious how trip earnings work?_2.png differ diff --git a/Scripts/Backup/Curious how trip earnings work?_3.png b/Scripts/Backup/Curious how trip earnings work?_3.png new file mode 100644 index 00000000..219385cb Binary files /dev/null and b/Scripts/Backup/Curious how trip earnings work?_3.png differ diff --git a/Scripts/Backup/Curious how trip earnings work?_4.png b/Scripts/Backup/Curious how trip earnings work?_4.png new file mode 100644 index 00000000..a5ede0ad Binary files /dev/null and b/Scripts/Backup/Curious how trip earnings work?_4.png differ diff --git "a/Scripts/Backup/Customer Feedback\nCustomer feedback\nHOME_1.png" "b/Scripts/Backup/Customer Feedback\nCustomer feedback\nHOME_1.png" new file mode 100644 index 00000000..f93fcfb8 Binary files /dev/null and "b/Scripts/Backup/Customer Feedback\nCustomer feedback\nHOME_1.png" differ diff --git a/Scripts/Backup/Having issues confirming your arrival at the store or customer location?_1.png b/Scripts/Backup/Having issues confirming your arrival at the store or customer location?_1.png new file mode 100644 index 00000000..ccb4cc0c Binary files /dev/null and b/Scripts/Backup/Having issues confirming your arrival at the store or customer location?_1.png differ diff --git a/Scripts/Backup/Having issues confirming your arrival at the store or customer location?_2.png b/Scripts/Backup/Having issues confirming your arrival at the store or customer location?_2.png new file mode 100644 index 00000000..83eb0da8 Binary files /dev/null and b/Scripts/Backup/Having issues confirming your arrival at the store or customer location?_2.png differ diff --git a/Scripts/Backup/Need to cancel a trip?_1.png b/Scripts/Backup/Need to cancel a trip?_1.png new file mode 100644 index 00000000..ccde9490 Binary files /dev/null and b/Scripts/Backup/Need to cancel a trip?_1.png differ diff --git a/Scripts/Backup/Need to cancel a trip?_2.png b/Scripts/Backup/Need to cancel a trip?_2.png new file mode 100644 index 00000000..4ba92dbc Binary files /dev/null and b/Scripts/Backup/Need to cancel a trip?_2.png differ diff --git a/Scripts/Backup/Need to cancel a trip?_3.png b/Scripts/Backup/Need to cancel a trip?_3.png new file mode 100644 index 00000000..19cac3c4 Binary files /dev/null and b/Scripts/Backup/Need to cancel a trip?_3.png differ diff --git a/Scripts/Backup/Need to cancel a trip?_4.png b/Scripts/Backup/Need to cancel a trip?_4.png new file mode 100644 index 00000000..228ef4c0 Binary files /dev/null and b/Scripts/Backup/Need to cancel a trip?_4.png differ diff --git a/Scripts/Backup/Need to cancel a trip?_5.png b/Scripts/Backup/Need to cancel a trip?_5.png new file mode 100644 index 00000000..b2aa0495 Binary files /dev/null and b/Scripts/Backup/Need to cancel a trip?_5.png differ diff --git a/Scripts/Backup/Need to cancel a trip?_6.png b/Scripts/Backup/Need to cancel a trip?_6.png new file mode 100644 index 00000000..6be4531b Binary files /dev/null and b/Scripts/Backup/Need to cancel a trip?_6.png differ diff --git a/Scripts/Backup/Not receiving app notifications?_1.png b/Scripts/Backup/Not receiving app notifications?_1.png new file mode 100644 index 00000000..a4b30dbc Binary files /dev/null and b/Scripts/Backup/Not receiving app notifications?_1.png differ diff --git a/Scripts/Backup/Not receiving app notifications?_2.png b/Scripts/Backup/Not receiving app notifications?_2.png new file mode 100644 index 00000000..4050a3ac Binary files /dev/null and b/Scripts/Backup/Not receiving app notifications?_2.png differ diff --git a/Scripts/Backup/Onboarding to the Spark Driver™ platform_1.png b/Scripts/Backup/Onboarding to the Spark Driver™ platform_1.png new file mode 100644 index 00000000..054f4a2f Binary files /dev/null and b/Scripts/Backup/Onboarding to the Spark Driver™ platform_1.png differ diff --git a/Scripts/Backup/Onboarding to the Spark Driver™ platform_2.png b/Scripts/Backup/Onboarding to the Spark Driver™ platform_2.png new file mode 100644 index 00000000..18b6a696 Binary files /dev/null and b/Scripts/Backup/Onboarding to the Spark Driver™ platform_2.png differ diff --git a/Scripts/Walmart_Screenshots/PDFs/.DS_Store b/Scripts/Backup/PDFs/.DS_Store similarity index 100% rename from Scripts/Walmart_Screenshots/PDFs/.DS_Store rename to Scripts/Backup/PDFs/.DS_Store diff --git a/Scripts/Walmart_Screenshots/PDFs/2022 Tax Filing FAQs_02.02.2023.pdf b/Scripts/Backup/PDFs/2022 Tax Filing FAQs_02.02.2023.pdf similarity index 100% rename from Scripts/Walmart_Screenshots/PDFs/2022 Tax Filing FAQs_02.02.2023.pdf rename to Scripts/Backup/PDFs/2022 Tax Filing FAQs_02.02.2023.pdf diff --git a/Scripts/Walmart_Screenshots/PDFs/Branch Wallet FAQs_02.02.2023.pdf b/Scripts/Backup/PDFs/Branch Wallet FAQs_02.02.2023.pdf similarity index 100% rename from Scripts/Walmart_Screenshots/PDFs/Branch Wallet FAQs_02.02.2023.pdf rename to Scripts/Backup/PDFs/Branch Wallet FAQs_02.02.2023.pdf diff --git a/Scripts/Walmart_Screenshots/PDFs/Curious How Trip Earnings Work?_02.02.2023.pdf b/Scripts/Backup/PDFs/Curious How Trip Earnings Work?_02.02.2023.pdf similarity index 100% rename from Scripts/Walmart_Screenshots/PDFs/Curious How Trip Earnings Work?_02.02.2023.pdf rename to Scripts/Backup/PDFs/Curious How Trip Earnings Work?_02.02.2023.pdf diff --git a/Scripts/Walmart_Screenshots/PDFs/Having Issues Confirming Your Arrival at the Store or Customer Location?_02.02.2023.pdf b/Scripts/Backup/PDFs/Having Issues Confirming Your Arrival at the Store or Customer Location?_02.02.2023.pdf similarity index 100% rename from Scripts/Walmart_Screenshots/PDFs/Having Issues Confirming Your Arrival at the Store or Customer Location?_02.02.2023.pdf rename to Scripts/Backup/PDFs/Having Issues Confirming Your Arrival at the Store or Customer Location?_02.02.2023.pdf diff --git a/Scripts/Walmart_Screenshots/PDFs/Need to Cancel a Trip?_02.02.2023.pdf b/Scripts/Backup/PDFs/Need to Cancel a Trip?_02.02.2023.pdf similarity index 100% rename from Scripts/Walmart_Screenshots/PDFs/Need to Cancel a Trip?_02.02.2023.pdf rename to Scripts/Backup/PDFs/Need to Cancel a Trip?_02.02.2023.pdf diff --git a/Scripts/Walmart_Screenshots/PDFs/Not Receiving App Notifications?_02.02.2023.pdf b/Scripts/Backup/PDFs/Not Receiving App Notifications?_02.02.2023.pdf similarity index 100% rename from Scripts/Walmart_Screenshots/PDFs/Not Receiving App Notifications?_02.02.2023.pdf rename to Scripts/Backup/PDFs/Not Receiving App Notifications?_02.02.2023.pdf diff --git a/Scripts/Walmart_Screenshots/PDFs/Onboarding to the Spark Driver™ Platform_02.02.2023.pdf b/Scripts/Backup/PDFs/Onboarding to the Spark Driver™ Platform_02.02.2023.pdf similarity index 100% rename from Scripts/Walmart_Screenshots/PDFs/Onboarding to the Spark Driver™ Platform_02.02.2023.pdf rename to Scripts/Backup/PDFs/Onboarding to the Spark Driver™ Platform_02.02.2023.pdf diff --git a/Scripts/Walmart_Screenshots/PDFs/Pointers on Adding Your Vehicle Details_02.02.2023.pdf b/Scripts/Backup/PDFs/Pointers on Adding Your Vehicle Details_02.02.2023.pdf similarity index 100% rename from Scripts/Walmart_Screenshots/PDFs/Pointers on Adding Your Vehicle Details_02.02.2023.pdf rename to Scripts/Backup/PDFs/Pointers on Adding Your Vehicle Details_02.02.2023.pdf diff --git a/Scripts/Walmart_Screenshots/PDFs/Pointers on Contacting a Customer During a Delivery_02.02.2023.pdf b/Scripts/Backup/PDFs/Pointers on Contacting a Customer During a Delivery_02.02.2023.pdf similarity index 100% rename from Scripts/Walmart_Screenshots/PDFs/Pointers on Contacting a Customer During a Delivery_02.02.2023.pdf rename to Scripts/Backup/PDFs/Pointers on Contacting a Customer During a Delivery_02.02.2023.pdf diff --git a/Scripts/Walmart_Screenshots/PDFs/Pointers on Creating Your Account_02.02.2023.pdf b/Scripts/Backup/PDFs/Pointers on Creating Your Account_02.02.2023.pdf similarity index 100% rename from Scripts/Walmart_Screenshots/PDFs/Pointers on Creating Your Account_02.02.2023.pdf rename to Scripts/Backup/PDFs/Pointers on Creating Your Account_02.02.2023.pdf diff --git a/Scripts/Walmart_Screenshots/PDFs/Pointers on Downloading the Spark Driver™ App & Signing In_02.02.2023.pdf b/Scripts/Backup/PDFs/Pointers on Downloading the Spark Driver™ App & Signing In_02.02.2023.pdf similarity index 100% rename from Scripts/Walmart_Screenshots/PDFs/Pointers on Downloading the Spark Driver™ App & Signing In_02.02.2023.pdf rename to Scripts/Backup/PDFs/Pointers on Downloading the Spark Driver™ App & Signing In_02.02.2023.pdf diff --git a/Scripts/Walmart_Screenshots/PDFs/Pointers on Reviewing Your Trips_02.02.2023.pdf b/Scripts/Backup/PDFs/Pointers on Reviewing Your Trips_02.02.2023.pdf similarity index 100% rename from Scripts/Walmart_Screenshots/PDFs/Pointers on Reviewing Your Trips_02.02.2023.pdf rename to Scripts/Backup/PDFs/Pointers on Reviewing Your Trips_02.02.2023.pdf diff --git a/Scripts/Walmart_Screenshots/PDFs/Pointers on Setting Up Your Account_02.02.2023.pdf b/Scripts/Backup/PDFs/Pointers on Setting Up Your Account_02.02.2023.pdf similarity index 100% rename from Scripts/Walmart_Screenshots/PDFs/Pointers on Setting Up Your Account_02.02.2023.pdf rename to Scripts/Backup/PDFs/Pointers on Setting Up Your Account_02.02.2023.pdf diff --git a/Scripts/Walmart_Screenshots/PDFs/Pointers on Sharing Your Location_02.02.2023.pdf b/Scripts/Backup/PDFs/Pointers on Sharing Your Location_02.02.2023.pdf similarity index 100% rename from Scripts/Walmart_Screenshots/PDFs/Pointers on Sharing Your Location_02.02.2023.pdf rename to Scripts/Backup/PDFs/Pointers on Sharing Your Location_02.02.2023.pdf diff --git a/Scripts/Walmart_Screenshots/PDFs/Pointers on Substituting Customer Items_02.02.2023.pdf b/Scripts/Backup/PDFs/Pointers on Substituting Customer Items_02.02.2023.pdf similarity index 100% rename from Scripts/Walmart_Screenshots/PDFs/Pointers on Substituting Customer Items_02.02.2023.pdf rename to Scripts/Backup/PDFs/Pointers on Substituting Customer Items_02.02.2023.pdf diff --git a/Scripts/Walmart_Screenshots/PDFs/Pointers on Turning Off Spark Now_02.02.2023.pdf b/Scripts/Backup/PDFs/Pointers on Turning Off Spark Now_02.02.2023.pdf similarity index 100% rename from Scripts/Walmart_Screenshots/PDFs/Pointers on Turning Off Spark Now_02.02.2023.pdf rename to Scripts/Backup/PDFs/Pointers on Turning Off Spark Now_02.02.2023.pdf diff --git a/Scripts/Walmart_Screenshots/PDFs/Pointers on Updating Your Spark Driver™ App_02.02.2023.pdf b/Scripts/Backup/PDFs/Pointers on Updating Your Spark Driver™ App_02.02.2023.pdf similarity index 100% rename from Scripts/Walmart_Screenshots/PDFs/Pointers on Updating Your Spark Driver™ App_02.02.2023.pdf rename to Scripts/Backup/PDFs/Pointers on Updating Your Spark Driver™ App_02.02.2023.pdf diff --git a/Scripts/Walmart_Screenshots/PDFs/Pointers on Viewing Your Earnings_02.02.2023.pdf b/Scripts/Backup/PDFs/Pointers on Viewing Your Earnings_02.02.2023.pdf similarity index 100% rename from Scripts/Walmart_Screenshots/PDFs/Pointers on Viewing Your Earnings_02.02.2023.pdf rename to Scripts/Backup/PDFs/Pointers on Viewing Your Earnings_02.02.2023.pdf diff --git a/Scripts/Walmart_Screenshots/PDFs/Questions About Earnings?_02.02.2023.pdf b/Scripts/Backup/PDFs/Questions About Earnings?_02.02.2023.pdf similarity index 100% rename from Scripts/Walmart_Screenshots/PDFs/Questions About Earnings?_02.02.2023.pdf rename to Scripts/Backup/PDFs/Questions About Earnings?_02.02.2023.pdf diff --git a/Scripts/Walmart_Screenshots/PDFs/Received a Damaged Order or Item?_02.02.2023.pdf b/Scripts/Backup/PDFs/Received a Damaged Order or Item?_02.02.2023.pdf similarity index 100% rename from Scripts/Walmart_Screenshots/PDFs/Received a Damaged Order or Item?_02.02.2023.pdf rename to Scripts/Backup/PDFs/Received a Damaged Order or Item?_02.02.2023.pdf diff --git a/Scripts/Walmart_Screenshots/PDFs/Receiving Error Messages & Alerts?_02.02.2023.pdf b/Scripts/Backup/PDFs/Receiving Error Messages & Alerts?_02.02.2023.pdf similarity index 100% rename from Scripts/Walmart_Screenshots/PDFs/Receiving Error Messages & Alerts?_02.02.2023.pdf rename to Scripts/Backup/PDFs/Receiving Error Messages & Alerts?_02.02.2023.pdf diff --git a/Scripts/Walmart_Screenshots/PDFs/Shopping & Delivery Overview_02.02.2023.pdf b/Scripts/Backup/PDFs/Shopping & Delivery Overview_02.02.2023.pdf similarity index 100% rename from Scripts/Walmart_Screenshots/PDFs/Shopping & Delivery Overview_02.02.2023.pdf rename to Scripts/Backup/PDFs/Shopping & Delivery Overview_02.02.2023.pdf diff --git a/Scripts/Walmart_Screenshots/PDFs/Tips for Accepting & Rejecting Substitutions Using Live Chat_02.02.2023.pdf b/Scripts/Backup/PDFs/Tips for Accepting & Rejecting Substitutions Using Live Chat_02.02.2023.pdf similarity index 100% rename from Scripts/Walmart_Screenshots/PDFs/Tips for Accepting & Rejecting Substitutions Using Live Chat_02.02.2023.pdf rename to Scripts/Backup/PDFs/Tips for Accepting & Rejecting Substitutions Using Live Chat_02.02.2023.pdf diff --git a/Scripts/Walmart_Screenshots/PDFs/Tips for Changing Your Zone_02.02.2023.pdf b/Scripts/Backup/PDFs/Tips for Changing Your Zone_02.02.2023.pdf similarity index 100% rename from Scripts/Walmart_Screenshots/PDFs/Tips for Changing Your Zone_02.02.2023.pdf rename to Scripts/Backup/PDFs/Tips for Changing Your Zone_02.02.2023.pdf diff --git a/Scripts/Walmart_Screenshots/PDFs/Tips for Claiming Your Branch Wallet_02.02.2023.pdf b/Scripts/Backup/PDFs/Tips for Claiming Your Branch Wallet_02.02.2023.pdf similarity index 100% rename from Scripts/Walmart_Screenshots/PDFs/Tips for Claiming Your Branch Wallet_02.02.2023.pdf rename to Scripts/Backup/PDFs/Tips for Claiming Your Branch Wallet_02.02.2023.pdf diff --git a/Scripts/Walmart_Screenshots/PDFs/Tips for Completing Your First Delivery_02.02.2023.pdf b/Scripts/Backup/PDFs/Tips for Completing Your First Delivery_02.02.2023.pdf similarity index 100% rename from Scripts/Walmart_Screenshots/PDFs/Tips for Completing Your First Delivery_02.02.2023.pdf rename to Scripts/Backup/PDFs/Tips for Completing Your First Delivery_02.02.2023.pdf diff --git a/Scripts/Walmart_Screenshots/PDFs/Tips for Receiving Offers_02.02.2023.pdf b/Scripts/Backup/PDFs/Tips for Receiving Offers_02.02.2023.pdf similarity index 100% rename from Scripts/Walmart_Screenshots/PDFs/Tips for Receiving Offers_02.02.2023.pdf rename to Scripts/Backup/PDFs/Tips for Receiving Offers_02.02.2023.pdf diff --git a/Scripts/Walmart_Screenshots/PDFs/Tips for Resolving Sign-In Errors_02.02.2023.pdf b/Scripts/Backup/PDFs/Tips for Resolving Sign-In Errors_02.02.2023.pdf similarity index 100% rename from Scripts/Walmart_Screenshots/PDFs/Tips for Resolving Sign-In Errors_02.02.2023.pdf rename to Scripts/Backup/PDFs/Tips for Resolving Sign-In Errors_02.02.2023.pdf diff --git a/Scripts/Walmart_Screenshots/PDFs/Tips for Setting Your Password & Turning On Notifications_02.02.2023.pdf b/Scripts/Backup/PDFs/Tips for Setting Your Password & Turning On Notifications_02.02.2023.pdf similarity index 100% rename from Scripts/Walmart_Screenshots/PDFs/Tips for Setting Your Password & Turning On Notifications_02.02.2023.pdf rename to Scripts/Backup/PDFs/Tips for Setting Your Password & Turning On Notifications_02.02.2023.pdf diff --git a/Scripts/Walmart_Screenshots/PDFs/Tips for Troubleshooting the App_02.02.2023.pdf b/Scripts/Backup/PDFs/Tips for Troubleshooting the App_02.02.2023.pdf similarity index 100% rename from Scripts/Walmart_Screenshots/PDFs/Tips for Troubleshooting the App_02.02.2023.pdf rename to Scripts/Backup/PDFs/Tips for Troubleshooting the App_02.02.2023.pdf diff --git a/Scripts/Walmart_Screenshots/PDFs/Tips for a Smooth Checkout Process_02.02.2023.pdf b/Scripts/Backup/PDFs/Tips for a Smooth Checkout Process_02.02.2023.pdf similarity index 100% rename from Scripts/Walmart_Screenshots/PDFs/Tips for a Smooth Checkout Process_02.02.2023.pdf rename to Scripts/Backup/PDFs/Tips for a Smooth Checkout Process_02.02.2023.pdf diff --git a/Scripts/Walmart_Screenshots/PDFs/Ways to Pick Customer Items Out of Sequence_02.02.2023.pdf b/Scripts/Backup/PDFs/Ways to Pick Customer Items Out of Sequence_02.02.2023.pdf similarity index 100% rename from Scripts/Walmart_Screenshots/PDFs/Ways to Pick Customer Items Out of Sequence_02.02.2023.pdf rename to Scripts/Backup/PDFs/Ways to Pick Customer Items Out of Sequence_02.02.2023.pdf diff --git a/Scripts/Backup/Pointers on adding your vehicle details_1.png b/Scripts/Backup/Pointers on adding your vehicle details_1.png new file mode 100644 index 00000000..e997758b Binary files /dev/null and b/Scripts/Backup/Pointers on adding your vehicle details_1.png differ diff --git a/Scripts/Backup/Pointers on adding your vehicle details_2.png b/Scripts/Backup/Pointers on adding your vehicle details_2.png new file mode 100644 index 00000000..049b2daf Binary files /dev/null and b/Scripts/Backup/Pointers on adding your vehicle details_2.png differ diff --git a/Scripts/Backup/Pointers on adding your vehicle details_3.png b/Scripts/Backup/Pointers on adding your vehicle details_3.png new file mode 100644 index 00000000..ad288b34 Binary files /dev/null and b/Scripts/Backup/Pointers on adding your vehicle details_3.png differ diff --git a/Scripts/Backup/Pointers on contacting a customer during a delivery_1.png b/Scripts/Backup/Pointers on contacting a customer during a delivery_1.png new file mode 100644 index 00000000..e6f647cd Binary files /dev/null and b/Scripts/Backup/Pointers on contacting a customer during a delivery_1.png differ diff --git a/Scripts/Backup/Pointers on contacting a customer during a delivery_2.png b/Scripts/Backup/Pointers on contacting a customer during a delivery_2.png new file mode 100644 index 00000000..314a7249 Binary files /dev/null and b/Scripts/Backup/Pointers on contacting a customer during a delivery_2.png differ diff --git a/Scripts/Backup/Pointers on contacting a customer during a delivery_3.png b/Scripts/Backup/Pointers on contacting a customer during a delivery_3.png new file mode 100644 index 00000000..5ca60755 Binary files /dev/null and b/Scripts/Backup/Pointers on contacting a customer during a delivery_3.png differ diff --git a/Scripts/Backup/Pointers on contacting a customer during a delivery_4.png b/Scripts/Backup/Pointers on contacting a customer during a delivery_4.png new file mode 100644 index 00000000..22e73414 Binary files /dev/null and b/Scripts/Backup/Pointers on contacting a customer during a delivery_4.png differ diff --git a/Scripts/Backup/Pointers on creating your account_1.png b/Scripts/Backup/Pointers on creating your account_1.png new file mode 100644 index 00000000..fea5efbb Binary files /dev/null and b/Scripts/Backup/Pointers on creating your account_1.png differ diff --git a/Scripts/Backup/Pointers on creating your account_2.png b/Scripts/Backup/Pointers on creating your account_2.png new file mode 100644 index 00000000..a7f4995e Binary files /dev/null and b/Scripts/Backup/Pointers on creating your account_2.png differ diff --git a/Scripts/Backup/Pointers on creating your account_3.png b/Scripts/Backup/Pointers on creating your account_3.png new file mode 100644 index 00000000..725e4998 Binary files /dev/null and b/Scripts/Backup/Pointers on creating your account_3.png differ diff --git a/Scripts/Backup/Pointers on creating your account_4.png b/Scripts/Backup/Pointers on creating your account_4.png new file mode 100644 index 00000000..250cac36 Binary files /dev/null and b/Scripts/Backup/Pointers on creating your account_4.png differ diff --git a/Scripts/Backup/Pointers on downloading the Spark Driver™ app & signing in_1.png b/Scripts/Backup/Pointers on downloading the Spark Driver™ app & signing in_1.png new file mode 100644 index 00000000..9df0aea1 Binary files /dev/null and b/Scripts/Backup/Pointers on downloading the Spark Driver™ app & signing in_1.png differ diff --git a/Scripts/Backup/Pointers on downloading the Spark Driver™ app & signing in_2.png b/Scripts/Backup/Pointers on downloading the Spark Driver™ app & signing in_2.png new file mode 100644 index 00000000..e0f649ff Binary files /dev/null and b/Scripts/Backup/Pointers on downloading the Spark Driver™ app & signing in_2.png differ diff --git a/Scripts/Backup/Pointers on reviewing your trips_1.png b/Scripts/Backup/Pointers on reviewing your trips_1.png new file mode 100644 index 00000000..852344f7 Binary files /dev/null and b/Scripts/Backup/Pointers on reviewing your trips_1.png differ diff --git a/Scripts/Backup/Pointers on reviewing your trips_2.png b/Scripts/Backup/Pointers on reviewing your trips_2.png new file mode 100644 index 00000000..bc40958d Binary files /dev/null and b/Scripts/Backup/Pointers on reviewing your trips_2.png differ diff --git a/Scripts/Backup/Pointers on reviewing your trips_3.png b/Scripts/Backup/Pointers on reviewing your trips_3.png new file mode 100644 index 00000000..5a15199e Binary files /dev/null and b/Scripts/Backup/Pointers on reviewing your trips_3.png differ diff --git a/Scripts/Backup/Pointers on setting up your account_1.png b/Scripts/Backup/Pointers on setting up your account_1.png new file mode 100644 index 00000000..ab005773 Binary files /dev/null and b/Scripts/Backup/Pointers on setting up your account_1.png differ diff --git a/Scripts/Backup/Pointers on setting up your account_2.png b/Scripts/Backup/Pointers on setting up your account_2.png new file mode 100644 index 00000000..07ac9357 Binary files /dev/null and b/Scripts/Backup/Pointers on setting up your account_2.png differ diff --git a/Scripts/Backup/Pointers on sharing your location_1.png b/Scripts/Backup/Pointers on sharing your location_1.png new file mode 100644 index 00000000..24fc2866 Binary files /dev/null and b/Scripts/Backup/Pointers on sharing your location_1.png differ diff --git a/Scripts/Backup/Pointers on sharing your location_2.png b/Scripts/Backup/Pointers on sharing your location_2.png new file mode 100644 index 00000000..fd4bc4f4 Binary files /dev/null and b/Scripts/Backup/Pointers on sharing your location_2.png differ diff --git a/Scripts/Backup/Pointers on substituting customer items_1.png b/Scripts/Backup/Pointers on substituting customer items_1.png new file mode 100644 index 00000000..87b8d1f8 Binary files /dev/null and b/Scripts/Backup/Pointers on substituting customer items_1.png differ diff --git a/Scripts/Backup/Pointers on substituting customer items_2.png b/Scripts/Backup/Pointers on substituting customer items_2.png new file mode 100644 index 00000000..a2ec358e Binary files /dev/null and b/Scripts/Backup/Pointers on substituting customer items_2.png differ diff --git a/Scripts/Backup/Pointers on turning off Spark Now_1.png b/Scripts/Backup/Pointers on turning off Spark Now_1.png new file mode 100644 index 00000000..d2ed135a Binary files /dev/null and b/Scripts/Backup/Pointers on turning off Spark Now_1.png differ diff --git a/Scripts/Backup/Pointers on turning off Spark Now_2.png b/Scripts/Backup/Pointers on turning off Spark Now_2.png new file mode 100644 index 00000000..bdb7c9e0 Binary files /dev/null and b/Scripts/Backup/Pointers on turning off Spark Now_2.png differ diff --git a/Scripts/Backup/Pointers on updating your Spark Driver™ app_1.png b/Scripts/Backup/Pointers on updating your Spark Driver™ app_1.png new file mode 100644 index 00000000..43d36748 Binary files /dev/null and b/Scripts/Backup/Pointers on updating your Spark Driver™ app_1.png differ diff --git a/Scripts/Backup/Pointers on updating your Spark Driver™ app_2.png b/Scripts/Backup/Pointers on updating your Spark Driver™ app_2.png new file mode 100644 index 00000000..ca1c91a1 Binary files /dev/null and b/Scripts/Backup/Pointers on updating your Spark Driver™ app_2.png differ diff --git a/Scripts/Backup/Pointers on viewing your earnings_1.png b/Scripts/Backup/Pointers on viewing your earnings_1.png new file mode 100644 index 00000000..81cd508d Binary files /dev/null and b/Scripts/Backup/Pointers on viewing your earnings_1.png differ diff --git a/Scripts/Backup/Pointers on viewing your earnings_2.png b/Scripts/Backup/Pointers on viewing your earnings_2.png new file mode 100644 index 00000000..2fddb61c Binary files /dev/null and b/Scripts/Backup/Pointers on viewing your earnings_2.png differ diff --git a/Scripts/Backup/Pointers on viewing your earnings_3.png b/Scripts/Backup/Pointers on viewing your earnings_3.png new file mode 100644 index 00000000..978a16dc Binary files /dev/null and b/Scripts/Backup/Pointers on viewing your earnings_3.png differ diff --git a/Scripts/Backup/Pointers on viewing your earnings_4.png b/Scripts/Backup/Pointers on viewing your earnings_4.png new file mode 100644 index 00000000..99907fe1 Binary files /dev/null and b/Scripts/Backup/Pointers on viewing your earnings_4.png differ diff --git a/Scripts/Backup/Pointers on viewing your earnings_5.png b/Scripts/Backup/Pointers on viewing your earnings_5.png new file mode 100644 index 00000000..a0ee9dab Binary files /dev/null and b/Scripts/Backup/Pointers on viewing your earnings_5.png differ diff --git a/Scripts/Backup/Questions about earnings?_1.png b/Scripts/Backup/Questions about earnings?_1.png new file mode 100644 index 00000000..45e6cdbf Binary files /dev/null and b/Scripts/Backup/Questions about earnings?_1.png differ diff --git a/Scripts/Backup/Questions about earnings?_2.png b/Scripts/Backup/Questions about earnings?_2.png new file mode 100644 index 00000000..d91ba207 Binary files /dev/null and b/Scripts/Backup/Questions about earnings?_2.png differ diff --git a/Scripts/Backup/Received a damaged order or item?_1.png b/Scripts/Backup/Received a damaged order or item?_1.png new file mode 100644 index 00000000..d9b6388f Binary files /dev/null and b/Scripts/Backup/Received a damaged order or item?_1.png differ diff --git a/Scripts/Backup/Received a damaged order or item?_2.png b/Scripts/Backup/Received a damaged order or item?_2.png new file mode 100644 index 00000000..603b7aee Binary files /dev/null and b/Scripts/Backup/Received a damaged order or item?_2.png differ diff --git a/Scripts/Backup/Receiving error messages & alerts?_1.png b/Scripts/Backup/Receiving error messages & alerts?_1.png new file mode 100644 index 00000000..b81c14f5 Binary files /dev/null and b/Scripts/Backup/Receiving error messages & alerts?_1.png differ diff --git a/Scripts/Backup/Receiving error messages & alerts?_2.png b/Scripts/Backup/Receiving error messages & alerts?_2.png new file mode 100644 index 00000000..78529307 Binary files /dev/null and b/Scripts/Backup/Receiving error messages & alerts?_2.png differ diff --git a/Scripts/Backup/Receiving error messages & alerts?_3.png b/Scripts/Backup/Receiving error messages & alerts?_3.png new file mode 100644 index 00000000..6f88169c Binary files /dev/null and b/Scripts/Backup/Receiving error messages & alerts?_3.png differ diff --git a/Scripts/Backup/Receiving error messages & alerts?_4.png b/Scripts/Backup/Receiving error messages & alerts?_4.png new file mode 100644 index 00000000..c0d97772 Binary files /dev/null and b/Scripts/Backup/Receiving error messages & alerts?_4.png differ diff --git a/Scripts/Backup/Shopping & Delivery overview_1.png b/Scripts/Backup/Shopping & Delivery overview_1.png new file mode 100644 index 00000000..d56beb66 Binary files /dev/null and b/Scripts/Backup/Shopping & Delivery overview_1.png differ diff --git a/Scripts/Backup/Shopping & Delivery overview_2.png b/Scripts/Backup/Shopping & Delivery overview_2.png new file mode 100644 index 00000000..0c982149 Binary files /dev/null and b/Scripts/Backup/Shopping & Delivery overview_2.png differ diff --git a/Scripts/Backup/Tips for a smooth checkout process_1.png b/Scripts/Backup/Tips for a smooth checkout process_1.png new file mode 100644 index 00000000..f4a2b27a Binary files /dev/null and b/Scripts/Backup/Tips for a smooth checkout process_1.png differ diff --git a/Scripts/Backup/Tips for a smooth checkout process_2.png b/Scripts/Backup/Tips for a smooth checkout process_2.png new file mode 100644 index 00000000..ece81ac0 Binary files /dev/null and b/Scripts/Backup/Tips for a smooth checkout process_2.png differ diff --git a/Scripts/Backup/Tips for accepting & rejecting substitutions using live chat_1.png b/Scripts/Backup/Tips for accepting & rejecting substitutions using live chat_1.png new file mode 100644 index 00000000..8aefa2e4 Binary files /dev/null and b/Scripts/Backup/Tips for accepting & rejecting substitutions using live chat_1.png differ diff --git a/Scripts/Backup/Tips for accepting & rejecting substitutions using live chat_2.png b/Scripts/Backup/Tips for accepting & rejecting substitutions using live chat_2.png new file mode 100644 index 00000000..0a33362f Binary files /dev/null and b/Scripts/Backup/Tips for accepting & rejecting substitutions using live chat_2.png differ diff --git a/Scripts/Backup/Tips for changing your zone_1.png b/Scripts/Backup/Tips for changing your zone_1.png new file mode 100644 index 00000000..cb4e2e0f Binary files /dev/null and b/Scripts/Backup/Tips for changing your zone_1.png differ diff --git a/Scripts/Backup/Tips for changing your zone_2.png b/Scripts/Backup/Tips for changing your zone_2.png new file mode 100644 index 00000000..c1d5a372 Binary files /dev/null and b/Scripts/Backup/Tips for changing your zone_2.png differ diff --git a/Scripts/Backup/Tips for changing your zone_3.png b/Scripts/Backup/Tips for changing your zone_3.png new file mode 100644 index 00000000..bd4534f9 Binary files /dev/null and b/Scripts/Backup/Tips for changing your zone_3.png differ diff --git a/Scripts/Backup/Tips for changing your zone_4.png b/Scripts/Backup/Tips for changing your zone_4.png new file mode 100644 index 00000000..c3666e25 Binary files /dev/null and b/Scripts/Backup/Tips for changing your zone_4.png differ diff --git a/Scripts/Backup/Tips for changing your zone_5.png b/Scripts/Backup/Tips for changing your zone_5.png new file mode 100644 index 00000000..a7e6b927 Binary files /dev/null and b/Scripts/Backup/Tips for changing your zone_5.png differ diff --git a/Scripts/Backup/Tips for claiming your Branch Wallet_1.png b/Scripts/Backup/Tips for claiming your Branch Wallet_1.png new file mode 100644 index 00000000..fb03c76d Binary files /dev/null and b/Scripts/Backup/Tips for claiming your Branch Wallet_1.png differ diff --git a/Scripts/Backup/Tips for claiming your Branch Wallet_2.png b/Scripts/Backup/Tips for claiming your Branch Wallet_2.png new file mode 100644 index 00000000..50fe09a4 Binary files /dev/null and b/Scripts/Backup/Tips for claiming your Branch Wallet_2.png differ diff --git a/Scripts/Backup/Tips for completing your first delivery_1.png b/Scripts/Backup/Tips for completing your first delivery_1.png new file mode 100644 index 00000000..5ea4094b Binary files /dev/null and b/Scripts/Backup/Tips for completing your first delivery_1.png differ diff --git a/Scripts/Backup/Tips for completing your first delivery_2.png b/Scripts/Backup/Tips for completing your first delivery_2.png new file mode 100644 index 00000000..305c9f86 Binary files /dev/null and b/Scripts/Backup/Tips for completing your first delivery_2.png differ diff --git a/Scripts/Backup/Tips for completing your first delivery_3.png b/Scripts/Backup/Tips for completing your first delivery_3.png new file mode 100644 index 00000000..b3e6810c Binary files /dev/null and b/Scripts/Backup/Tips for completing your first delivery_3.png differ diff --git a/Scripts/Backup/Tips for completing your first delivery_4.png b/Scripts/Backup/Tips for completing your first delivery_4.png new file mode 100644 index 00000000..ab8aedaf Binary files /dev/null and b/Scripts/Backup/Tips for completing your first delivery_4.png differ diff --git a/Scripts/Backup/Tips for completing your first delivery_5.png b/Scripts/Backup/Tips for completing your first delivery_5.png new file mode 100644 index 00000000..0130235a Binary files /dev/null and b/Scripts/Backup/Tips for completing your first delivery_5.png differ diff --git a/Scripts/Backup/Tips for completing your first delivery_6.png b/Scripts/Backup/Tips for completing your first delivery_6.png new file mode 100644 index 00000000..435e2f2a Binary files /dev/null and b/Scripts/Backup/Tips for completing your first delivery_6.png differ diff --git a/Scripts/Backup/Tips for completing your first delivery_7.png b/Scripts/Backup/Tips for completing your first delivery_7.png new file mode 100644 index 00000000..d61b088b Binary files /dev/null and b/Scripts/Backup/Tips for completing your first delivery_7.png differ diff --git a/Scripts/Backup/Tips for completing your first delivery_8.png b/Scripts/Backup/Tips for completing your first delivery_8.png new file mode 100644 index 00000000..d8c497f8 Binary files /dev/null and b/Scripts/Backup/Tips for completing your first delivery_8.png differ diff --git a/Scripts/Backup/Tips for completing your first delivery_9.png b/Scripts/Backup/Tips for completing your first delivery_9.png new file mode 100644 index 00000000..7a119e8e Binary files /dev/null and b/Scripts/Backup/Tips for completing your first delivery_9.png differ diff --git a/Scripts/Backup/Tips for receiving offers_1.png b/Scripts/Backup/Tips for receiving offers_1.png new file mode 100644 index 00000000..ac748deb Binary files /dev/null and b/Scripts/Backup/Tips for receiving offers_1.png differ diff --git a/Scripts/Backup/Tips for receiving offers_2.png b/Scripts/Backup/Tips for receiving offers_2.png new file mode 100644 index 00000000..99e7c386 Binary files /dev/null and b/Scripts/Backup/Tips for receiving offers_2.png differ diff --git a/Scripts/Backup/Tips for receiving offers_3.png b/Scripts/Backup/Tips for receiving offers_3.png new file mode 100644 index 00000000..ad2498d0 Binary files /dev/null and b/Scripts/Backup/Tips for receiving offers_3.png differ diff --git a/Scripts/Backup/Tips for receiving offers_4.png b/Scripts/Backup/Tips for receiving offers_4.png new file mode 100644 index 00000000..588b8a2f Binary files /dev/null and b/Scripts/Backup/Tips for receiving offers_4.png differ diff --git a/Scripts/Backup/Tips for receiving offers_5.png b/Scripts/Backup/Tips for receiving offers_5.png new file mode 100644 index 00000000..4085ad4f Binary files /dev/null and b/Scripts/Backup/Tips for receiving offers_5.png differ diff --git a/Scripts/Backup/Tips for resolving sign-in errors_1.png b/Scripts/Backup/Tips for resolving sign-in errors_1.png new file mode 100644 index 00000000..fd98bed1 Binary files /dev/null and b/Scripts/Backup/Tips for resolving sign-in errors_1.png differ diff --git a/Scripts/Backup/Tips for resolving sign-in errors_2.png b/Scripts/Backup/Tips for resolving sign-in errors_2.png new file mode 100644 index 00000000..1a09cd8d Binary files /dev/null and b/Scripts/Backup/Tips for resolving sign-in errors_2.png differ diff --git a/Scripts/Walmart_Screenshots/.DS_Store b/Scripts/Walmart_Screenshots/.DS_Store index 3c5f7295..c6a2b52d 100644 Binary files a/Scripts/Walmart_Screenshots/.DS_Store and b/Scripts/Walmart_Screenshots/.DS_Store differ diff --git a/Scripts/Walmart_Screenshots/2022 tax filing FAQs_1.png b/Scripts/Walmart_Screenshots/2022 tax filing FAQs_1.png new file mode 100644 index 00000000..467bd179 Binary files /dev/null and b/Scripts/Walmart_Screenshots/2022 tax filing FAQs_1.png differ diff --git a/Scripts/Walmart_Screenshots/2022 tax filing FAQs_2.png b/Scripts/Walmart_Screenshots/2022 tax filing FAQs_2.png new file mode 100644 index 00000000..9fc92a2e Binary files /dev/null and b/Scripts/Walmart_Screenshots/2022 tax filing FAQs_2.png differ diff --git a/Scripts/Walmart_Screenshots/2022 tax filing FAQs_3.png b/Scripts/Walmart_Screenshots/2022 tax filing FAQs_3.png new file mode 100644 index 00000000..71579eb5 Binary files /dev/null and b/Scripts/Walmart_Screenshots/2022 tax filing FAQs_3.png differ diff --git a/Scripts/Walmart_Screenshots/2022 tax filing FAQs_4.png b/Scripts/Walmart_Screenshots/2022 tax filing FAQs_4.png new file mode 100644 index 00000000..5aa49afc Binary files /dev/null and b/Scripts/Walmart_Screenshots/2022 tax filing FAQs_4.png differ diff --git a/Scripts/Walmart_Screenshots/2022 tax filing FAQs_5.png b/Scripts/Walmart_Screenshots/2022 tax filing FAQs_5.png new file mode 100644 index 00000000..a5635964 Binary files /dev/null and b/Scripts/Walmart_Screenshots/2022 tax filing FAQs_5.png differ diff --git a/Scripts/Walmart_Screenshots/2022 tax filing FAQs_6.png b/Scripts/Walmart_Screenshots/2022 tax filing FAQs_6.png new file mode 100644 index 00000000..ce02b82b Binary files /dev/null and b/Scripts/Walmart_Screenshots/2022 tax filing FAQs_6.png differ diff --git a/Scripts/Walmart_Screenshots/2022 tax filing FAQs_7.png b/Scripts/Walmart_Screenshots/2022 tax filing FAQs_7.png new file mode 100644 index 00000000..de137d40 Binary files /dev/null and b/Scripts/Walmart_Screenshots/2022 tax filing FAQs_7.png differ diff --git a/Scripts/Walmart_Screenshots/2022 tax filing FAQs_8.png b/Scripts/Walmart_Screenshots/2022 tax filing FAQs_8.png new file mode 100644 index 00000000..5d8f59a0 Binary files /dev/null and b/Scripts/Walmart_Screenshots/2022 tax filing FAQs_8.png differ diff --git a/Scripts/Walmart_Screenshots/Branch Wallet FAQs_1.png b/Scripts/Walmart_Screenshots/Branch Wallet FAQs_1.png new file mode 100644 index 00000000..eca83faa Binary files /dev/null and b/Scripts/Walmart_Screenshots/Branch Wallet FAQs_1.png differ diff --git a/Scripts/Walmart_Screenshots/Branch Wallet FAQs_2.png b/Scripts/Walmart_Screenshots/Branch Wallet FAQs_2.png new file mode 100644 index 00000000..d573ebe4 Binary files /dev/null and b/Scripts/Walmart_Screenshots/Branch Wallet FAQs_2.png differ diff --git a/Scripts/Walmart_Screenshots/Branch Wallet FAQs_3.png b/Scripts/Walmart_Screenshots/Branch Wallet FAQs_3.png new file mode 100644 index 00000000..1abe6f7c Binary files /dev/null and b/Scripts/Walmart_Screenshots/Branch Wallet FAQs_3.png differ diff --git a/Scripts/Walmart_Screenshots/Branch Wallet FAQs_4.png b/Scripts/Walmart_Screenshots/Branch Wallet FAQs_4.png new file mode 100644 index 00000000..2ee14e09 Binary files /dev/null and b/Scripts/Walmart_Screenshots/Branch Wallet FAQs_4.png differ diff --git a/Scripts/Walmart_Screenshots/Branch Wallet FAQs_5.png b/Scripts/Walmart_Screenshots/Branch Wallet FAQs_5.png new file mode 100644 index 00000000..e89000bc Binary files /dev/null and b/Scripts/Walmart_Screenshots/Branch Wallet FAQs_5.png differ diff --git a/Scripts/Walmart_Screenshots/Branch Wallet FAQs_6.png b/Scripts/Walmart_Screenshots/Branch Wallet FAQs_6.png new file mode 100644 index 00000000..5e3ad852 Binary files /dev/null and b/Scripts/Walmart_Screenshots/Branch Wallet FAQs_6.png differ diff --git a/Scripts/Walmart_Screenshots/Branch Wallet FAQs_7.png b/Scripts/Walmart_Screenshots/Branch Wallet FAQs_7.png new file mode 100644 index 00000000..a0ddab8d Binary files /dev/null and b/Scripts/Walmart_Screenshots/Branch Wallet FAQs_7.png differ diff --git a/Scripts/Walmart_Screenshots/Branch Wallet FAQs_8.png b/Scripts/Walmart_Screenshots/Branch Wallet FAQs_8.png new file mode 100644 index 00000000..ba9a5251 Binary files /dev/null and b/Scripts/Walmart_Screenshots/Branch Wallet FAQs_8.png differ diff --git a/Scripts/Walmart_Screenshots/Branch Wallet FAQs_9.png b/Scripts/Walmart_Screenshots/Branch Wallet FAQs_9.png new file mode 100644 index 00000000..c2086f07 Binary files /dev/null and b/Scripts/Walmart_Screenshots/Branch Wallet FAQs_9.png differ diff --git a/Scripts/Walmart_Screenshots/Curious how trip earnings work?_1.png b/Scripts/Walmart_Screenshots/Curious how trip earnings work?_1.png new file mode 100644 index 00000000..6aebb1bc Binary files /dev/null and b/Scripts/Walmart_Screenshots/Curious how trip earnings work?_1.png differ diff --git a/Scripts/Walmart_Screenshots/Curious how trip earnings work?_2.png b/Scripts/Walmart_Screenshots/Curious how trip earnings work?_2.png new file mode 100644 index 00000000..d6421dac Binary files /dev/null and b/Scripts/Walmart_Screenshots/Curious how trip earnings work?_2.png differ diff --git a/Scripts/Walmart_Screenshots/Curious how trip earnings work?_3.png b/Scripts/Walmart_Screenshots/Curious how trip earnings work?_3.png new file mode 100644 index 00000000..219385cb Binary files /dev/null and b/Scripts/Walmart_Screenshots/Curious how trip earnings work?_3.png differ diff --git a/Scripts/Walmart_Screenshots/Curious how trip earnings work?_4.png b/Scripts/Walmart_Screenshots/Curious how trip earnings work?_4.png new file mode 100644 index 00000000..a5ede0ad Binary files /dev/null and b/Scripts/Walmart_Screenshots/Curious how trip earnings work?_4.png differ diff --git "a/Scripts/Walmart_Screenshots/Customer Feedback\nCustomer feedback\nHOME_1.png" "b/Scripts/Walmart_Screenshots/Customer Feedback\nCustomer feedback\nHOME_1.png" new file mode 100644 index 00000000..f93fcfb8 Binary files /dev/null and "b/Scripts/Walmart_Screenshots/Customer Feedback\nCustomer feedback\nHOME_1.png" differ diff --git a/Scripts/Walmart_Screenshots/Having issues confirming your arrival at the store or customer location?_1.png b/Scripts/Walmart_Screenshots/Having issues confirming your arrival at the store or customer location?_1.png new file mode 100644 index 00000000..ccb4cc0c Binary files /dev/null and b/Scripts/Walmart_Screenshots/Having issues confirming your arrival at the store or customer location?_1.png differ diff --git a/Scripts/Walmart_Screenshots/Having issues confirming your arrival at the store or customer location?_2.png b/Scripts/Walmart_Screenshots/Having issues confirming your arrival at the store or customer location?_2.png new file mode 100644 index 00000000..83eb0da8 Binary files /dev/null and b/Scripts/Walmart_Screenshots/Having issues confirming your arrival at the store or customer location?_2.png differ diff --git a/Scripts/Walmart_Screenshots/Need to cancel a trip?_1.png b/Scripts/Walmart_Screenshots/Need to cancel a trip?_1.png new file mode 100644 index 00000000..c992f104 Binary files /dev/null and b/Scripts/Walmart_Screenshots/Need to cancel a trip?_1.png differ diff --git a/Scripts/Walmart_Screenshots/Need to cancel a trip?_2.png b/Scripts/Walmart_Screenshots/Need to cancel a trip?_2.png new file mode 100644 index 00000000..4ba92dbc Binary files /dev/null and b/Scripts/Walmart_Screenshots/Need to cancel a trip?_2.png differ diff --git a/Scripts/Walmart_Screenshots/Need to cancel a trip?_3.png b/Scripts/Walmart_Screenshots/Need to cancel a trip?_3.png new file mode 100644 index 00000000..19cac3c4 Binary files /dev/null and b/Scripts/Walmart_Screenshots/Need to cancel a trip?_3.png differ diff --git a/Scripts/Walmart_Screenshots/Need to cancel a trip?_4.png b/Scripts/Walmart_Screenshots/Need to cancel a trip?_4.png new file mode 100644 index 00000000..a84c559f Binary files /dev/null and b/Scripts/Walmart_Screenshots/Need to cancel a trip?_4.png differ diff --git a/Scripts/Walmart_Screenshots/Need to cancel a trip?_5.png b/Scripts/Walmart_Screenshots/Need to cancel a trip?_5.png new file mode 100644 index 00000000..b2aa0495 Binary files /dev/null and b/Scripts/Walmart_Screenshots/Need to cancel a trip?_5.png differ diff --git a/Scripts/Walmart_Screenshots/Need to cancel a trip?_6.png b/Scripts/Walmart_Screenshots/Need to cancel a trip?_6.png new file mode 100644 index 00000000..6be4531b Binary files /dev/null and b/Scripts/Walmart_Screenshots/Need to cancel a trip?_6.png differ diff --git a/Scripts/Walmart_Screenshots/Not receiving app notifications?_1.png b/Scripts/Walmart_Screenshots/Not receiving app notifications?_1.png new file mode 100644 index 00000000..a4b30dbc Binary files /dev/null and b/Scripts/Walmart_Screenshots/Not receiving app notifications?_1.png differ diff --git a/Scripts/Walmart_Screenshots/Not receiving app notifications?_2.png b/Scripts/Walmart_Screenshots/Not receiving app notifications?_2.png new file mode 100644 index 00000000..4050a3ac Binary files /dev/null and b/Scripts/Walmart_Screenshots/Not receiving app notifications?_2.png differ diff --git a/Scripts/Walmart_Screenshots/Onboarding to the Spark Driver™ platform_1.png b/Scripts/Walmart_Screenshots/Onboarding to the Spark Driver™ platform_1.png new file mode 100644 index 00000000..054f4a2f Binary files /dev/null and b/Scripts/Walmart_Screenshots/Onboarding to the Spark Driver™ platform_1.png differ diff --git a/Scripts/Walmart_Screenshots/Onboarding to the Spark Driver™ platform_2.png b/Scripts/Walmart_Screenshots/Onboarding to the Spark Driver™ platform_2.png new file mode 100644 index 00000000..18b6a696 Binary files /dev/null and b/Scripts/Walmart_Screenshots/Onboarding to the Spark Driver™ platform_2.png differ diff --git a/Scripts/Walmart_Screenshots/PDFs/2022 tax filing FAQs_02.13.2023.pdf b/Scripts/Walmart_Screenshots/PDFs/2022 tax filing FAQs_02.13.2023.pdf new file mode 100644 index 00000000..b8f3562f Binary files /dev/null and b/Scripts/Walmart_Screenshots/PDFs/2022 tax filing FAQs_02.13.2023.pdf differ diff --git a/Scripts/Walmart_Screenshots/PDFs/Branch Wallet FAQs_02.13.2023.pdf b/Scripts/Walmart_Screenshots/PDFs/Branch Wallet FAQs_02.13.2023.pdf new file mode 100644 index 00000000..22e37c44 Binary files /dev/null and b/Scripts/Walmart_Screenshots/PDFs/Branch Wallet FAQs_02.13.2023.pdf differ diff --git a/Scripts/Walmart_Screenshots/PDFs/Curious how trip earnings work?_02.13.2023.pdf b/Scripts/Walmart_Screenshots/PDFs/Curious how trip earnings work?_02.13.2023.pdf new file mode 100644 index 00000000..6ac000ec Binary files /dev/null and b/Scripts/Walmart_Screenshots/PDFs/Curious how trip earnings work?_02.13.2023.pdf differ diff --git "a/Scripts/Walmart_Screenshots/PDFs/Customer Feedback\nCustomer feedback\nHOME_02.13.2023.pdf" "b/Scripts/Walmart_Screenshots/PDFs/Customer Feedback\nCustomer feedback\nHOME_02.13.2023.pdf" new file mode 100644 index 00000000..323cbc91 Binary files /dev/null and "b/Scripts/Walmart_Screenshots/PDFs/Customer Feedback\nCustomer feedback\nHOME_02.13.2023.pdf" differ diff --git a/Scripts/Walmart_Screenshots/PDFs/Having issues confirming your arrival at the store or customer location?_02.13.2023.pdf b/Scripts/Walmart_Screenshots/PDFs/Having issues confirming your arrival at the store or customer location?_02.13.2023.pdf new file mode 100644 index 00000000..df0a38bf Binary files /dev/null and b/Scripts/Walmart_Screenshots/PDFs/Having issues confirming your arrival at the store or customer location?_02.13.2023.pdf differ diff --git a/Scripts/Walmart_Screenshots/PDFs/Need to cancel a trip?_02.13.2023.pdf b/Scripts/Walmart_Screenshots/PDFs/Need to cancel a trip?_02.13.2023.pdf new file mode 100644 index 00000000..9b5ff2dc Binary files /dev/null and b/Scripts/Walmart_Screenshots/PDFs/Need to cancel a trip?_02.13.2023.pdf differ diff --git a/Scripts/Walmart_Screenshots/PDFs/Not receiving app notifications?_02.13.2023.pdf b/Scripts/Walmart_Screenshots/PDFs/Not receiving app notifications?_02.13.2023.pdf new file mode 100644 index 00000000..9bf30fa1 Binary files /dev/null and b/Scripts/Walmart_Screenshots/PDFs/Not receiving app notifications?_02.13.2023.pdf differ diff --git a/Scripts/Walmart_Screenshots/PDFs/Onboarding to the Spark Driver™ platform_02.13.2023.pdf b/Scripts/Walmart_Screenshots/PDFs/Onboarding to the Spark Driver™ platform_02.13.2023.pdf new file mode 100644 index 00000000..fb2c8db0 Binary files /dev/null and b/Scripts/Walmart_Screenshots/PDFs/Onboarding to the Spark Driver™ platform_02.13.2023.pdf differ diff --git a/Scripts/Walmart_Screenshots/PDFs/Pointers on adding your vehicle details_02.13.2023.pdf b/Scripts/Walmart_Screenshots/PDFs/Pointers on adding your vehicle details_02.13.2023.pdf new file mode 100644 index 00000000..dc5f1680 Binary files /dev/null and b/Scripts/Walmart_Screenshots/PDFs/Pointers on adding your vehicle details_02.13.2023.pdf differ diff --git a/Scripts/Walmart_Screenshots/PDFs/Pointers on contacting a customer during a delivery_02.13.2023.pdf b/Scripts/Walmart_Screenshots/PDFs/Pointers on contacting a customer during a delivery_02.13.2023.pdf new file mode 100644 index 00000000..8df1ac88 Binary files /dev/null and b/Scripts/Walmart_Screenshots/PDFs/Pointers on contacting a customer during a delivery_02.13.2023.pdf differ diff --git a/Scripts/Walmart_Screenshots/PDFs/Pointers on creating your account_02.13.2023.pdf b/Scripts/Walmart_Screenshots/PDFs/Pointers on creating your account_02.13.2023.pdf new file mode 100644 index 00000000..503ea45c Binary files /dev/null and b/Scripts/Walmart_Screenshots/PDFs/Pointers on creating your account_02.13.2023.pdf differ diff --git a/Scripts/Walmart_Screenshots/PDFs/Pointers on downloading the Spark Driver™ app & signing in_02.13.2023.pdf b/Scripts/Walmart_Screenshots/PDFs/Pointers on downloading the Spark Driver™ app & signing in_02.13.2023.pdf new file mode 100644 index 00000000..95ce44cb Binary files /dev/null and b/Scripts/Walmart_Screenshots/PDFs/Pointers on downloading the Spark Driver™ app & signing in_02.13.2023.pdf differ diff --git a/Scripts/Walmart_Screenshots/PDFs/Pointers on reviewing your trips_02.13.2023.pdf b/Scripts/Walmart_Screenshots/PDFs/Pointers on reviewing your trips_02.13.2023.pdf new file mode 100644 index 00000000..87fd6010 Binary files /dev/null and b/Scripts/Walmart_Screenshots/PDFs/Pointers on reviewing your trips_02.13.2023.pdf differ diff --git a/Scripts/Walmart_Screenshots/PDFs/Pointers on setting up your account_02.13.2023.pdf b/Scripts/Walmart_Screenshots/PDFs/Pointers on setting up your account_02.13.2023.pdf new file mode 100644 index 00000000..ed50944d Binary files /dev/null and b/Scripts/Walmart_Screenshots/PDFs/Pointers on setting up your account_02.13.2023.pdf differ diff --git a/Scripts/Walmart_Screenshots/PDFs/Pointers on sharing your location_02.13.2023.pdf b/Scripts/Walmart_Screenshots/PDFs/Pointers on sharing your location_02.13.2023.pdf new file mode 100644 index 00000000..be00ab1b Binary files /dev/null and b/Scripts/Walmart_Screenshots/PDFs/Pointers on sharing your location_02.13.2023.pdf differ diff --git a/Scripts/Walmart_Screenshots/PDFs/Pointers on substituting customer items_02.13.2023.pdf b/Scripts/Walmart_Screenshots/PDFs/Pointers on substituting customer items_02.13.2023.pdf new file mode 100644 index 00000000..ca6c719d Binary files /dev/null and b/Scripts/Walmart_Screenshots/PDFs/Pointers on substituting customer items_02.13.2023.pdf differ diff --git a/Scripts/Walmart_Screenshots/PDFs/Pointers on turning off Spark Now_02.13.2023.pdf b/Scripts/Walmart_Screenshots/PDFs/Pointers on turning off Spark Now_02.13.2023.pdf new file mode 100644 index 00000000..24573ef2 Binary files /dev/null and b/Scripts/Walmart_Screenshots/PDFs/Pointers on turning off Spark Now_02.13.2023.pdf differ diff --git a/Scripts/Walmart_Screenshots/PDFs/Pointers on updating your Spark Driver™ app_02.13.2023.pdf b/Scripts/Walmart_Screenshots/PDFs/Pointers on updating your Spark Driver™ app_02.13.2023.pdf new file mode 100644 index 00000000..f93af10d Binary files /dev/null and b/Scripts/Walmart_Screenshots/PDFs/Pointers on updating your Spark Driver™ app_02.13.2023.pdf differ diff --git a/Scripts/Walmart_Screenshots/PDFs/Pointers on viewing your earnings_02.13.2023.pdf b/Scripts/Walmart_Screenshots/PDFs/Pointers on viewing your earnings_02.13.2023.pdf new file mode 100644 index 00000000..0cb873e5 Binary files /dev/null and b/Scripts/Walmart_Screenshots/PDFs/Pointers on viewing your earnings_02.13.2023.pdf differ diff --git a/Scripts/Walmart_Screenshots/PDFs/Questions about earnings?_02.13.2023.pdf b/Scripts/Walmart_Screenshots/PDFs/Questions about earnings?_02.13.2023.pdf new file mode 100644 index 00000000..0a3e72fc Binary files /dev/null and b/Scripts/Walmart_Screenshots/PDFs/Questions about earnings?_02.13.2023.pdf differ diff --git a/Scripts/Walmart_Screenshots/PDFs/Received a damaged order or item?_02.13.2023.pdf b/Scripts/Walmart_Screenshots/PDFs/Received a damaged order or item?_02.13.2023.pdf new file mode 100644 index 00000000..2b3fe6e2 Binary files /dev/null and b/Scripts/Walmart_Screenshots/PDFs/Received a damaged order or item?_02.13.2023.pdf differ diff --git a/Scripts/Walmart_Screenshots/PDFs/Receiving error messages & alerts?_02.13.2023.pdf b/Scripts/Walmart_Screenshots/PDFs/Receiving error messages & alerts?_02.13.2023.pdf new file mode 100644 index 00000000..046223d0 Binary files /dev/null and b/Scripts/Walmart_Screenshots/PDFs/Receiving error messages & alerts?_02.13.2023.pdf differ diff --git a/Scripts/Walmart_Screenshots/PDFs/Shopping & Delivery overview_02.13.2023.pdf b/Scripts/Walmart_Screenshots/PDFs/Shopping & Delivery overview_02.13.2023.pdf new file mode 100644 index 00000000..734a4a45 Binary files /dev/null and b/Scripts/Walmart_Screenshots/PDFs/Shopping & Delivery overview_02.13.2023.pdf differ diff --git a/Scripts/Walmart_Screenshots/PDFs/Tips for a smooth checkout process_02.13.2023.pdf b/Scripts/Walmart_Screenshots/PDFs/Tips for a smooth checkout process_02.13.2023.pdf new file mode 100644 index 00000000..f8367367 Binary files /dev/null and b/Scripts/Walmart_Screenshots/PDFs/Tips for a smooth checkout process_02.13.2023.pdf differ diff --git a/Scripts/Walmart_Screenshots/PDFs/Tips for accepting & rejecting substitutions using live chat_02.13.2023.pdf b/Scripts/Walmart_Screenshots/PDFs/Tips for accepting & rejecting substitutions using live chat_02.13.2023.pdf new file mode 100644 index 00000000..5207e07e Binary files /dev/null and b/Scripts/Walmart_Screenshots/PDFs/Tips for accepting & rejecting substitutions using live chat_02.13.2023.pdf differ diff --git a/Scripts/Walmart_Screenshots/PDFs/Tips for changing your zone_02.13.2023.pdf b/Scripts/Walmart_Screenshots/PDFs/Tips for changing your zone_02.13.2023.pdf new file mode 100644 index 00000000..fc4f1b83 Binary files /dev/null and b/Scripts/Walmart_Screenshots/PDFs/Tips for changing your zone_02.13.2023.pdf differ diff --git a/Scripts/Walmart_Screenshots/PDFs/Tips for claiming your Branch Wallet_02.13.2023.pdf b/Scripts/Walmart_Screenshots/PDFs/Tips for claiming your Branch Wallet_02.13.2023.pdf new file mode 100644 index 00000000..abc8c63d Binary files /dev/null and b/Scripts/Walmart_Screenshots/PDFs/Tips for claiming your Branch Wallet_02.13.2023.pdf differ diff --git a/Scripts/Walmart_Screenshots/PDFs/Tips for completing your first delivery_02.13.2023.pdf b/Scripts/Walmart_Screenshots/PDFs/Tips for completing your first delivery_02.13.2023.pdf new file mode 100644 index 00000000..0c08b007 Binary files /dev/null and b/Scripts/Walmart_Screenshots/PDFs/Tips for completing your first delivery_02.13.2023.pdf differ diff --git a/Scripts/Walmart_Screenshots/PDFs/Tips for receiving offers_02.13.2023.pdf b/Scripts/Walmart_Screenshots/PDFs/Tips for receiving offers_02.13.2023.pdf new file mode 100644 index 00000000..180ee281 Binary files /dev/null and b/Scripts/Walmart_Screenshots/PDFs/Tips for receiving offers_02.13.2023.pdf differ diff --git a/Scripts/Walmart_Screenshots/PDFs/Tips for resolving sign-in errors_02.13.2023.pdf b/Scripts/Walmart_Screenshots/PDFs/Tips for resolving sign-in errors_02.13.2023.pdf new file mode 100644 index 00000000..49277c32 Binary files /dev/null and b/Scripts/Walmart_Screenshots/PDFs/Tips for resolving sign-in errors_02.13.2023.pdf differ diff --git a/Scripts/Walmart_Screenshots/PDFs/Tips for setting your password & turning on notifications_02.13.2023.pdf b/Scripts/Walmart_Screenshots/PDFs/Tips for setting your password & turning on notifications_02.13.2023.pdf new file mode 100644 index 00000000..c3497923 Binary files /dev/null and b/Scripts/Walmart_Screenshots/PDFs/Tips for setting your password & turning on notifications_02.13.2023.pdf differ diff --git a/Scripts/Walmart_Screenshots/PDFs/Tips for troubleshooting the app_02.13.2023.pdf b/Scripts/Walmart_Screenshots/PDFs/Tips for troubleshooting the app_02.13.2023.pdf new file mode 100644 index 00000000..bcd1bca9 Binary files /dev/null and b/Scripts/Walmart_Screenshots/PDFs/Tips for troubleshooting the app_02.13.2023.pdf differ diff --git a/Scripts/Walmart_Screenshots/PDFs/Ways to pick customer items out of sequence_02.13.2023.pdf b/Scripts/Walmart_Screenshots/PDFs/Ways to pick customer items out of sequence_02.13.2023.pdf new file mode 100644 index 00000000..92f85954 Binary files /dev/null and b/Scripts/Walmart_Screenshots/PDFs/Ways to pick customer items out of sequence_02.13.2023.pdf differ diff --git a/Scripts/Walmart_Screenshots/PDFs_backup/Pointers on setting up your account_02.13.2023.pdf b/Scripts/Walmart_Screenshots/PDFs_backup/Pointers on setting up your account_02.13.2023.pdf new file mode 100644 index 00000000..8ee7fdb7 Binary files /dev/null and b/Scripts/Walmart_Screenshots/PDFs_backup/Pointers on setting up your account_02.13.2023.pdf differ diff --git a/Scripts/Walmart_Screenshots/PDFs_backup/Pointers on sharing your location_02.13.2023.pdf b/Scripts/Walmart_Screenshots/PDFs_backup/Pointers on sharing your location_02.13.2023.pdf new file mode 100644 index 00000000..10bdbd13 Binary files /dev/null and b/Scripts/Walmart_Screenshots/PDFs_backup/Pointers on sharing your location_02.13.2023.pdf differ diff --git a/Scripts/Walmart_Screenshots/PDFs_backup/Pointers on substituting customer items_02.13.2023.pdf b/Scripts/Walmart_Screenshots/PDFs_backup/Pointers on substituting customer items_02.13.2023.pdf new file mode 100644 index 00000000..8f48adc7 Binary files /dev/null and b/Scripts/Walmart_Screenshots/PDFs_backup/Pointers on substituting customer items_02.13.2023.pdf differ diff --git a/Scripts/Walmart_Screenshots/PDFs_backup/Pointers on turning off Spark Now_02.13.2023.pdf b/Scripts/Walmart_Screenshots/PDFs_backup/Pointers on turning off Spark Now_02.13.2023.pdf new file mode 100644 index 00000000..b1bbda44 Binary files /dev/null and b/Scripts/Walmart_Screenshots/PDFs_backup/Pointers on turning off Spark Now_02.13.2023.pdf differ diff --git a/Scripts/Walmart_Screenshots/PDFs_backup/Pointers on updating your Spark Driver™ app_02.13.2023.pdf b/Scripts/Walmart_Screenshots/PDFs_backup/Pointers on updating your Spark Driver™ app_02.13.2023.pdf new file mode 100644 index 00000000..5b810a35 Binary files /dev/null and b/Scripts/Walmart_Screenshots/PDFs_backup/Pointers on updating your Spark Driver™ app_02.13.2023.pdf differ diff --git a/Scripts/Walmart_Screenshots/PDFs_backup/Pointers on viewing your earnings_02.13.2023.pdf b/Scripts/Walmart_Screenshots/PDFs_backup/Pointers on viewing your earnings_02.13.2023.pdf new file mode 100644 index 00000000..76d97f15 Binary files /dev/null and b/Scripts/Walmart_Screenshots/PDFs_backup/Pointers on viewing your earnings_02.13.2023.pdf differ diff --git a/Scripts/Walmart_Screenshots/PDFs_backup/Questions about earnings?_02.13.2023.pdf b/Scripts/Walmart_Screenshots/PDFs_backup/Questions about earnings?_02.13.2023.pdf new file mode 100644 index 00000000..7c8f7c47 Binary files /dev/null and b/Scripts/Walmart_Screenshots/PDFs_backup/Questions about earnings?_02.13.2023.pdf differ diff --git a/Scripts/Walmart_Screenshots/PDFs_backup/Received a damaged order or item?_02.13.2023.pdf b/Scripts/Walmart_Screenshots/PDFs_backup/Received a damaged order or item?_02.13.2023.pdf new file mode 100644 index 00000000..45743e44 Binary files /dev/null and b/Scripts/Walmart_Screenshots/PDFs_backup/Received a damaged order or item?_02.13.2023.pdf differ diff --git a/Scripts/Walmart_Screenshots/PDFs_backup/Receiving error messages & alerts?_02.13.2023.pdf b/Scripts/Walmart_Screenshots/PDFs_backup/Receiving error messages & alerts?_02.13.2023.pdf new file mode 100644 index 00000000..63b1d496 Binary files /dev/null and b/Scripts/Walmart_Screenshots/PDFs_backup/Receiving error messages & alerts?_02.13.2023.pdf differ diff --git a/Scripts/Walmart_Screenshots/PDFs_backup/Shopping & Delivery overview_02.13.2023.pdf b/Scripts/Walmart_Screenshots/PDFs_backup/Shopping & Delivery overview_02.13.2023.pdf new file mode 100644 index 00000000..9f90136d Binary files /dev/null and b/Scripts/Walmart_Screenshots/PDFs_backup/Shopping & Delivery overview_02.13.2023.pdf differ diff --git a/Scripts/Walmart_Screenshots/PDFs_backup/Tips for a smooth checkout process_02.13.2023.pdf b/Scripts/Walmart_Screenshots/PDFs_backup/Tips for a smooth checkout process_02.13.2023.pdf new file mode 100644 index 00000000..6616e440 Binary files /dev/null and b/Scripts/Walmart_Screenshots/PDFs_backup/Tips for a smooth checkout process_02.13.2023.pdf differ diff --git a/Scripts/Walmart_Screenshots/PDFs_backup/Tips for accepting & rejecting substitutions using live chat_02.13.2023.pdf b/Scripts/Walmart_Screenshots/PDFs_backup/Tips for accepting & rejecting substitutions using live chat_02.13.2023.pdf new file mode 100644 index 00000000..918ecfa1 Binary files /dev/null and b/Scripts/Walmart_Screenshots/PDFs_backup/Tips for accepting & rejecting substitutions using live chat_02.13.2023.pdf differ diff --git a/Scripts/Walmart_Screenshots/PDFs_backup/Tips for changing your zone_02.13.2023.pdf b/Scripts/Walmart_Screenshots/PDFs_backup/Tips for changing your zone_02.13.2023.pdf new file mode 100644 index 00000000..682316cf Binary files /dev/null and b/Scripts/Walmart_Screenshots/PDFs_backup/Tips for changing your zone_02.13.2023.pdf differ diff --git a/Scripts/Walmart_Screenshots/PDFs_backup/Tips for claiming your Branch Wallet_02.13.2023.pdf b/Scripts/Walmart_Screenshots/PDFs_backup/Tips for claiming your Branch Wallet_02.13.2023.pdf new file mode 100644 index 00000000..8bb8b8db Binary files /dev/null and b/Scripts/Walmart_Screenshots/PDFs_backup/Tips for claiming your Branch Wallet_02.13.2023.pdf differ diff --git a/Scripts/Walmart_Screenshots/PDFs_backup/Tips for completing your first delivery_02.13.2023.pdf b/Scripts/Walmart_Screenshots/PDFs_backup/Tips for completing your first delivery_02.13.2023.pdf new file mode 100644 index 00000000..ba6d5ffc Binary files /dev/null and b/Scripts/Walmart_Screenshots/PDFs_backup/Tips for completing your first delivery_02.13.2023.pdf differ diff --git a/Scripts/Walmart_Screenshots/PDFs_backup/Tips for receiving offers_02.13.2023.pdf b/Scripts/Walmart_Screenshots/PDFs_backup/Tips for receiving offers_02.13.2023.pdf new file mode 100644 index 00000000..27df5760 Binary files /dev/null and b/Scripts/Walmart_Screenshots/PDFs_backup/Tips for receiving offers_02.13.2023.pdf differ diff --git a/Scripts/Walmart_Screenshots/PDFs_backup/Tips for resolving sign-in errors_02.13.2023.pdf b/Scripts/Walmart_Screenshots/PDFs_backup/Tips for resolving sign-in errors_02.13.2023.pdf new file mode 100644 index 00000000..4deab8b5 Binary files /dev/null and b/Scripts/Walmart_Screenshots/PDFs_backup/Tips for resolving sign-in errors_02.13.2023.pdf differ diff --git a/Scripts/Walmart_Screenshots/PDFs_backup/Tips for setting your password & turning on notifications_02.13.2023.pdf b/Scripts/Walmart_Screenshots/PDFs_backup/Tips for setting your password & turning on notifications_02.13.2023.pdf new file mode 100644 index 00000000..39d6b432 Binary files /dev/null and b/Scripts/Walmart_Screenshots/PDFs_backup/Tips for setting your password & turning on notifications_02.13.2023.pdf differ diff --git a/Scripts/Walmart_Screenshots/PDFs_backup/Tips for troubleshooting the app_02.13.2023.pdf b/Scripts/Walmart_Screenshots/PDFs_backup/Tips for troubleshooting the app_02.13.2023.pdf new file mode 100644 index 00000000..e1fe65f7 Binary files /dev/null and b/Scripts/Walmart_Screenshots/PDFs_backup/Tips for troubleshooting the app_02.13.2023.pdf differ diff --git a/Scripts/Walmart_Screenshots/PDFs_backup/Ways to pick customer items out of sequence_02.13.2023.pdf b/Scripts/Walmart_Screenshots/PDFs_backup/Ways to pick customer items out of sequence_02.13.2023.pdf new file mode 100644 index 00000000..810a8daf Binary files /dev/null and b/Scripts/Walmart_Screenshots/PDFs_backup/Ways to pick customer items out of sequence_02.13.2023.pdf differ diff --git a/Scripts/Walmart_Screenshots/Pointers on adding your vehicle details_1.png b/Scripts/Walmart_Screenshots/Pointers on adding your vehicle details_1.png new file mode 100644 index 00000000..e997758b Binary files /dev/null and b/Scripts/Walmart_Screenshots/Pointers on adding your vehicle details_1.png differ diff --git a/Scripts/Walmart_Screenshots/Pointers on adding your vehicle details_2.png b/Scripts/Walmart_Screenshots/Pointers on adding your vehicle details_2.png new file mode 100644 index 00000000..049b2daf Binary files /dev/null and b/Scripts/Walmart_Screenshots/Pointers on adding your vehicle details_2.png differ diff --git a/Scripts/Walmart_Screenshots/Pointers on adding your vehicle details_3.png b/Scripts/Walmart_Screenshots/Pointers on adding your vehicle details_3.png new file mode 100644 index 00000000..ad288b34 Binary files /dev/null and b/Scripts/Walmart_Screenshots/Pointers on adding your vehicle details_3.png differ diff --git a/Scripts/Walmart_Screenshots/Pointers on contacting a customer during a delivery_1.png b/Scripts/Walmart_Screenshots/Pointers on contacting a customer during a delivery_1.png new file mode 100644 index 00000000..e6f647cd Binary files /dev/null and b/Scripts/Walmart_Screenshots/Pointers on contacting a customer during a delivery_1.png differ diff --git a/Scripts/Walmart_Screenshots/Pointers on contacting a customer during a delivery_2.png b/Scripts/Walmart_Screenshots/Pointers on contacting a customer during a delivery_2.png new file mode 100644 index 00000000..4851534d Binary files /dev/null and b/Scripts/Walmart_Screenshots/Pointers on contacting a customer during a delivery_2.png differ diff --git a/Scripts/Walmart_Screenshots/Pointers on contacting a customer during a delivery_3.png b/Scripts/Walmart_Screenshots/Pointers on contacting a customer during a delivery_3.png new file mode 100644 index 00000000..5ca60755 Binary files /dev/null and b/Scripts/Walmart_Screenshots/Pointers on contacting a customer during a delivery_3.png differ diff --git a/Scripts/Walmart_Screenshots/Pointers on contacting a customer during a delivery_4.png b/Scripts/Walmart_Screenshots/Pointers on contacting a customer during a delivery_4.png new file mode 100644 index 00000000..4d71e327 Binary files /dev/null and b/Scripts/Walmart_Screenshots/Pointers on contacting a customer during a delivery_4.png differ diff --git a/Scripts/Walmart_Screenshots/Pointers on creating your account_1.png b/Scripts/Walmart_Screenshots/Pointers on creating your account_1.png new file mode 100644 index 00000000..fea5efbb Binary files /dev/null and b/Scripts/Walmart_Screenshots/Pointers on creating your account_1.png differ diff --git a/Scripts/Walmart_Screenshots/Pointers on creating your account_2.png b/Scripts/Walmart_Screenshots/Pointers on creating your account_2.png new file mode 100644 index 00000000..a7f4995e Binary files /dev/null and b/Scripts/Walmart_Screenshots/Pointers on creating your account_2.png differ diff --git a/Scripts/Walmart_Screenshots/Pointers on creating your account_3.png b/Scripts/Walmart_Screenshots/Pointers on creating your account_3.png new file mode 100644 index 00000000..725e4998 Binary files /dev/null and b/Scripts/Walmart_Screenshots/Pointers on creating your account_3.png differ diff --git a/Scripts/Walmart_Screenshots/Pointers on creating your account_4.png b/Scripts/Walmart_Screenshots/Pointers on creating your account_4.png new file mode 100644 index 00000000..250cac36 Binary files /dev/null and b/Scripts/Walmart_Screenshots/Pointers on creating your account_4.png differ diff --git a/Scripts/Walmart_Screenshots/Pointers on downloading the Spark Driver™ app & signing in_1.png b/Scripts/Walmart_Screenshots/Pointers on downloading the Spark Driver™ app & signing in_1.png new file mode 100644 index 00000000..9df0aea1 Binary files /dev/null and b/Scripts/Walmart_Screenshots/Pointers on downloading the Spark Driver™ app & signing in_1.png differ diff --git a/Scripts/Walmart_Screenshots/Pointers on downloading the Spark Driver™ app & signing in_2.png b/Scripts/Walmart_Screenshots/Pointers on downloading the Spark Driver™ app & signing in_2.png new file mode 100644 index 00000000..ad78213a Binary files /dev/null and b/Scripts/Walmart_Screenshots/Pointers on downloading the Spark Driver™ app & signing in_2.png differ diff --git a/Scripts/Walmart_Screenshots/Pointers on reviewing your trips_1.png b/Scripts/Walmart_Screenshots/Pointers on reviewing your trips_1.png new file mode 100644 index 00000000..852344f7 Binary files /dev/null and b/Scripts/Walmart_Screenshots/Pointers on reviewing your trips_1.png differ diff --git a/Scripts/Walmart_Screenshots/Pointers on reviewing your trips_2.png b/Scripts/Walmart_Screenshots/Pointers on reviewing your trips_2.png new file mode 100644 index 00000000..7cd84ca6 Binary files /dev/null and b/Scripts/Walmart_Screenshots/Pointers on reviewing your trips_2.png differ diff --git a/Scripts/Walmart_Screenshots/Pointers on reviewing your trips_3.png b/Scripts/Walmart_Screenshots/Pointers on reviewing your trips_3.png new file mode 100644 index 00000000..4fd8f5eb Binary files /dev/null and b/Scripts/Walmart_Screenshots/Pointers on reviewing your trips_3.png differ diff --git a/Scripts/Walmart_Screenshots/Pointers on setting up your account_1.png b/Scripts/Walmart_Screenshots/Pointers on setting up your account_1.png new file mode 100644 index 00000000..ab005773 Binary files /dev/null and b/Scripts/Walmart_Screenshots/Pointers on setting up your account_1.png differ diff --git a/Scripts/Walmart_Screenshots/Pointers on setting up your account_2.png b/Scripts/Walmart_Screenshots/Pointers on setting up your account_2.png new file mode 100644 index 00000000..a6fcb9fc Binary files /dev/null and b/Scripts/Walmart_Screenshots/Pointers on setting up your account_2.png differ diff --git a/Scripts/Walmart_Screenshots/Pointers on sharing your location_1.png b/Scripts/Walmart_Screenshots/Pointers on sharing your location_1.png new file mode 100644 index 00000000..24fc2866 Binary files /dev/null and b/Scripts/Walmart_Screenshots/Pointers on sharing your location_1.png differ diff --git a/Scripts/Walmart_Screenshots/Pointers on sharing your location_2.png b/Scripts/Walmart_Screenshots/Pointers on sharing your location_2.png new file mode 100644 index 00000000..fd4bc4f4 Binary files /dev/null and b/Scripts/Walmart_Screenshots/Pointers on sharing your location_2.png differ diff --git a/Scripts/Walmart_Screenshots/Pointers on substituting customer items_1.png b/Scripts/Walmart_Screenshots/Pointers on substituting customer items_1.png new file mode 100644 index 00000000..87b8d1f8 Binary files /dev/null and b/Scripts/Walmart_Screenshots/Pointers on substituting customer items_1.png differ diff --git a/Scripts/Walmart_Screenshots/Pointers on substituting customer items_2.png b/Scripts/Walmart_Screenshots/Pointers on substituting customer items_2.png new file mode 100644 index 00000000..a2ec358e Binary files /dev/null and b/Scripts/Walmart_Screenshots/Pointers on substituting customer items_2.png differ diff --git a/Scripts/Walmart_Screenshots/Pointers on turning off Spark Now_1.png b/Scripts/Walmart_Screenshots/Pointers on turning off Spark Now_1.png new file mode 100644 index 00000000..d2ed135a Binary files /dev/null and b/Scripts/Walmart_Screenshots/Pointers on turning off Spark Now_1.png differ diff --git a/Scripts/Walmart_Screenshots/Pointers on turning off Spark Now_2.png b/Scripts/Walmart_Screenshots/Pointers on turning off Spark Now_2.png new file mode 100644 index 00000000..c8c3bcc6 Binary files /dev/null and b/Scripts/Walmart_Screenshots/Pointers on turning off Spark Now_2.png differ diff --git a/Scripts/Walmart_Screenshots/Pointers on updating your Spark Driver™ app_1.png b/Scripts/Walmart_Screenshots/Pointers on updating your Spark Driver™ app_1.png new file mode 100644 index 00000000..43d36748 Binary files /dev/null and b/Scripts/Walmart_Screenshots/Pointers on updating your Spark Driver™ app_1.png differ diff --git a/Scripts/Walmart_Screenshots/Pointers on updating your Spark Driver™ app_2.png b/Scripts/Walmart_Screenshots/Pointers on updating your Spark Driver™ app_2.png new file mode 100644 index 00000000..ca1c91a1 Binary files /dev/null and b/Scripts/Walmart_Screenshots/Pointers on updating your Spark Driver™ app_2.png differ diff --git a/Scripts/Walmart_Screenshots/Pointers on viewing your earnings_1.png b/Scripts/Walmart_Screenshots/Pointers on viewing your earnings_1.png new file mode 100644 index 00000000..81cd508d Binary files /dev/null and b/Scripts/Walmart_Screenshots/Pointers on viewing your earnings_1.png differ diff --git a/Scripts/Walmart_Screenshots/Pointers on viewing your earnings_2.png b/Scripts/Walmart_Screenshots/Pointers on viewing your earnings_2.png new file mode 100644 index 00000000..2fddb61c Binary files /dev/null and b/Scripts/Walmart_Screenshots/Pointers on viewing your earnings_2.png differ diff --git a/Scripts/Walmart_Screenshots/Pointers on viewing your earnings_3.png b/Scripts/Walmart_Screenshots/Pointers on viewing your earnings_3.png new file mode 100644 index 00000000..978a16dc Binary files /dev/null and b/Scripts/Walmart_Screenshots/Pointers on viewing your earnings_3.png differ diff --git a/Scripts/Walmart_Screenshots/Pointers on viewing your earnings_4.png b/Scripts/Walmart_Screenshots/Pointers on viewing your earnings_4.png new file mode 100644 index 00000000..99907fe1 Binary files /dev/null and b/Scripts/Walmart_Screenshots/Pointers on viewing your earnings_4.png differ diff --git a/Scripts/Walmart_Screenshots/Pointers on viewing your earnings_5.png b/Scripts/Walmart_Screenshots/Pointers on viewing your earnings_5.png new file mode 100644 index 00000000..a0ee9dab Binary files /dev/null and b/Scripts/Walmart_Screenshots/Pointers on viewing your earnings_5.png differ diff --git a/Scripts/Walmart_Screenshots/Questions about earnings?_1.png b/Scripts/Walmart_Screenshots/Questions about earnings?_1.png new file mode 100644 index 00000000..45e6cdbf Binary files /dev/null and b/Scripts/Walmart_Screenshots/Questions about earnings?_1.png differ diff --git a/Scripts/Walmart_Screenshots/Questions about earnings?_2.png b/Scripts/Walmart_Screenshots/Questions about earnings?_2.png new file mode 100644 index 00000000..d91ba207 Binary files /dev/null and b/Scripts/Walmart_Screenshots/Questions about earnings?_2.png differ diff --git a/Scripts/Walmart_Screenshots/Received a damaged order or item?_1.png b/Scripts/Walmart_Screenshots/Received a damaged order or item?_1.png new file mode 100644 index 00000000..d9b6388f Binary files /dev/null and b/Scripts/Walmart_Screenshots/Received a damaged order or item?_1.png differ diff --git a/Scripts/Walmart_Screenshots/Received a damaged order or item?_2.png b/Scripts/Walmart_Screenshots/Received a damaged order or item?_2.png new file mode 100644 index 00000000..603b7aee Binary files /dev/null and b/Scripts/Walmart_Screenshots/Received a damaged order or item?_2.png differ diff --git a/Scripts/Walmart_Screenshots/Receiving error messages & alerts?_1.png b/Scripts/Walmart_Screenshots/Receiving error messages & alerts?_1.png new file mode 100644 index 00000000..b81c14f5 Binary files /dev/null and b/Scripts/Walmart_Screenshots/Receiving error messages & alerts?_1.png differ diff --git a/Scripts/Walmart_Screenshots/Receiving error messages & alerts?_2.png b/Scripts/Walmart_Screenshots/Receiving error messages & alerts?_2.png new file mode 100644 index 00000000..78529307 Binary files /dev/null and b/Scripts/Walmart_Screenshots/Receiving error messages & alerts?_2.png differ diff --git a/Scripts/Walmart_Screenshots/Receiving error messages & alerts?_3.png b/Scripts/Walmart_Screenshots/Receiving error messages & alerts?_3.png new file mode 100644 index 00000000..6f88169c Binary files /dev/null and b/Scripts/Walmart_Screenshots/Receiving error messages & alerts?_3.png differ diff --git a/Scripts/Walmart_Screenshots/Receiving error messages & alerts?_4.png b/Scripts/Walmart_Screenshots/Receiving error messages & alerts?_4.png new file mode 100644 index 00000000..c0d97772 Binary files /dev/null and b/Scripts/Walmart_Screenshots/Receiving error messages & alerts?_4.png differ diff --git a/Scripts/Walmart_Screenshots/Shopping & Delivery overview_1.png b/Scripts/Walmart_Screenshots/Shopping & Delivery overview_1.png new file mode 100644 index 00000000..d56beb66 Binary files /dev/null and b/Scripts/Walmart_Screenshots/Shopping & Delivery overview_1.png differ diff --git a/Scripts/Walmart_Screenshots/Shopping & Delivery overview_2.png b/Scripts/Walmart_Screenshots/Shopping & Delivery overview_2.png new file mode 100644 index 00000000..73ff4dd2 Binary files /dev/null and b/Scripts/Walmart_Screenshots/Shopping & Delivery overview_2.png differ diff --git a/Scripts/Walmart_Screenshots/Tips for a smooth checkout process_1.png b/Scripts/Walmart_Screenshots/Tips for a smooth checkout process_1.png new file mode 100644 index 00000000..f4a2b27a Binary files /dev/null and b/Scripts/Walmart_Screenshots/Tips for a smooth checkout process_1.png differ diff --git a/Scripts/Walmart_Screenshots/Tips for a smooth checkout process_2.png b/Scripts/Walmart_Screenshots/Tips for a smooth checkout process_2.png new file mode 100644 index 00000000..ece81ac0 Binary files /dev/null and b/Scripts/Walmart_Screenshots/Tips for a smooth checkout process_2.png differ diff --git a/Scripts/Walmart_Screenshots/Tips for accepting & rejecting substitutions using live chat_1.png b/Scripts/Walmart_Screenshots/Tips for accepting & rejecting substitutions using live chat_1.png new file mode 100644 index 00000000..8aefa2e4 Binary files /dev/null and b/Scripts/Walmart_Screenshots/Tips for accepting & rejecting substitutions using live chat_1.png differ diff --git a/Scripts/Walmart_Screenshots/Tips for accepting & rejecting substitutions using live chat_2.png b/Scripts/Walmart_Screenshots/Tips for accepting & rejecting substitutions using live chat_2.png new file mode 100644 index 00000000..0a33362f Binary files /dev/null and b/Scripts/Walmart_Screenshots/Tips for accepting & rejecting substitutions using live chat_2.png differ diff --git a/Scripts/Walmart_Screenshots/Tips for changing your zone_1.png b/Scripts/Walmart_Screenshots/Tips for changing your zone_1.png new file mode 100644 index 00000000..cb4e2e0f Binary files /dev/null and b/Scripts/Walmart_Screenshots/Tips for changing your zone_1.png differ diff --git a/Scripts/Walmart_Screenshots/Tips for changing your zone_2.png b/Scripts/Walmart_Screenshots/Tips for changing your zone_2.png new file mode 100644 index 00000000..7204be05 Binary files /dev/null and b/Scripts/Walmart_Screenshots/Tips for changing your zone_2.png differ diff --git a/Scripts/Walmart_Screenshots/Tips for changing your zone_3.png b/Scripts/Walmart_Screenshots/Tips for changing your zone_3.png new file mode 100644 index 00000000..c46f074c Binary files /dev/null and b/Scripts/Walmart_Screenshots/Tips for changing your zone_3.png differ diff --git a/Scripts/Walmart_Screenshots/Tips for changing your zone_4.png b/Scripts/Walmart_Screenshots/Tips for changing your zone_4.png new file mode 100644 index 00000000..c3666e25 Binary files /dev/null and b/Scripts/Walmart_Screenshots/Tips for changing your zone_4.png differ diff --git a/Scripts/Walmart_Screenshots/Tips for changing your zone_5.png b/Scripts/Walmart_Screenshots/Tips for changing your zone_5.png new file mode 100644 index 00000000..a7e6b927 Binary files /dev/null and b/Scripts/Walmart_Screenshots/Tips for changing your zone_5.png differ diff --git a/Scripts/Walmart_Screenshots/Tips for claiming your Branch Wallet_1.png b/Scripts/Walmart_Screenshots/Tips for claiming your Branch Wallet_1.png new file mode 100644 index 00000000..fb03c76d Binary files /dev/null and b/Scripts/Walmart_Screenshots/Tips for claiming your Branch Wallet_1.png differ diff --git a/Scripts/Walmart_Screenshots/Tips for claiming your Branch Wallet_2.png b/Scripts/Walmart_Screenshots/Tips for claiming your Branch Wallet_2.png new file mode 100644 index 00000000..50fe09a4 Binary files /dev/null and b/Scripts/Walmart_Screenshots/Tips for claiming your Branch Wallet_2.png differ diff --git a/Scripts/Walmart_Screenshots/Tips for completing your first delivery_1.png b/Scripts/Walmart_Screenshots/Tips for completing your first delivery_1.png new file mode 100644 index 00000000..5ea4094b Binary files /dev/null and b/Scripts/Walmart_Screenshots/Tips for completing your first delivery_1.png differ diff --git a/Scripts/Walmart_Screenshots/Tips for completing your first delivery_2.png b/Scripts/Walmart_Screenshots/Tips for completing your first delivery_2.png new file mode 100644 index 00000000..305c9f86 Binary files /dev/null and b/Scripts/Walmart_Screenshots/Tips for completing your first delivery_2.png differ diff --git a/Scripts/Walmart_Screenshots/Tips for completing your first delivery_3.png b/Scripts/Walmart_Screenshots/Tips for completing your first delivery_3.png new file mode 100644 index 00000000..b3e6810c Binary files /dev/null and b/Scripts/Walmart_Screenshots/Tips for completing your first delivery_3.png differ diff --git a/Scripts/Walmart_Screenshots/Tips for completing your first delivery_4.png b/Scripts/Walmart_Screenshots/Tips for completing your first delivery_4.png new file mode 100644 index 00000000..ab8aedaf Binary files /dev/null and b/Scripts/Walmart_Screenshots/Tips for completing your first delivery_4.png differ diff --git a/Scripts/Walmart_Screenshots/Tips for completing your first delivery_5.png b/Scripts/Walmart_Screenshots/Tips for completing your first delivery_5.png new file mode 100644 index 00000000..0130235a Binary files /dev/null and b/Scripts/Walmart_Screenshots/Tips for completing your first delivery_5.png differ diff --git a/Scripts/Walmart_Screenshots/Tips for completing your first delivery_6.png b/Scripts/Walmart_Screenshots/Tips for completing your first delivery_6.png new file mode 100644 index 00000000..435e2f2a Binary files /dev/null and b/Scripts/Walmart_Screenshots/Tips for completing your first delivery_6.png differ diff --git a/Scripts/Walmart_Screenshots/Tips for completing your first delivery_7.png b/Scripts/Walmart_Screenshots/Tips for completing your first delivery_7.png new file mode 100644 index 00000000..d61b088b Binary files /dev/null and b/Scripts/Walmart_Screenshots/Tips for completing your first delivery_7.png differ diff --git a/Scripts/Walmart_Screenshots/Tips for completing your first delivery_8.png b/Scripts/Walmart_Screenshots/Tips for completing your first delivery_8.png new file mode 100644 index 00000000..d8c497f8 Binary files /dev/null and b/Scripts/Walmart_Screenshots/Tips for completing your first delivery_8.png differ diff --git a/Scripts/Walmart_Screenshots/Tips for completing your first delivery_9.png b/Scripts/Walmart_Screenshots/Tips for completing your first delivery_9.png new file mode 100644 index 00000000..ee2ff8c4 Binary files /dev/null and b/Scripts/Walmart_Screenshots/Tips for completing your first delivery_9.png differ diff --git a/Scripts/Walmart_Screenshots/Tips for receiving offers_1.png b/Scripts/Walmart_Screenshots/Tips for receiving offers_1.png new file mode 100644 index 00000000..ac748deb Binary files /dev/null and b/Scripts/Walmart_Screenshots/Tips for receiving offers_1.png differ diff --git a/Scripts/Walmart_Screenshots/Tips for receiving offers_2.png b/Scripts/Walmart_Screenshots/Tips for receiving offers_2.png new file mode 100644 index 00000000..99e7c386 Binary files /dev/null and b/Scripts/Walmart_Screenshots/Tips for receiving offers_2.png differ diff --git a/Scripts/Walmart_Screenshots/Tips for receiving offers_3.png b/Scripts/Walmart_Screenshots/Tips for receiving offers_3.png new file mode 100644 index 00000000..ad2498d0 Binary files /dev/null and b/Scripts/Walmart_Screenshots/Tips for receiving offers_3.png differ diff --git a/Scripts/Walmart_Screenshots/Tips for receiving offers_4.png b/Scripts/Walmart_Screenshots/Tips for receiving offers_4.png new file mode 100644 index 00000000..588b8a2f Binary files /dev/null and b/Scripts/Walmart_Screenshots/Tips for receiving offers_4.png differ diff --git a/Scripts/Walmart_Screenshots/Tips for receiving offers_5.png b/Scripts/Walmart_Screenshots/Tips for receiving offers_5.png new file mode 100644 index 00000000..4085ad4f Binary files /dev/null and b/Scripts/Walmart_Screenshots/Tips for receiving offers_5.png differ diff --git a/Scripts/Walmart_Screenshots/Tips for resolving sign-in errors_1.png b/Scripts/Walmart_Screenshots/Tips for resolving sign-in errors_1.png new file mode 100644 index 00000000..fd98bed1 Binary files /dev/null and b/Scripts/Walmart_Screenshots/Tips for resolving sign-in errors_1.png differ diff --git a/Scripts/Walmart_Screenshots/Tips for resolving sign-in errors_2.png b/Scripts/Walmart_Screenshots/Tips for resolving sign-in errors_2.png new file mode 100644 index 00000000..1a09cd8d Binary files /dev/null and b/Scripts/Walmart_Screenshots/Tips for resolving sign-in errors_2.png differ diff --git a/Scripts/Walmart_Screenshots/Tips for setting your password & turning on notifications_1.png b/Scripts/Walmart_Screenshots/Tips for setting your password & turning on notifications_1.png new file mode 100644 index 00000000..4cd8d8ec Binary files /dev/null and b/Scripts/Walmart_Screenshots/Tips for setting your password & turning on notifications_1.png differ diff --git a/Scripts/Walmart_Screenshots/Tips for setting your password & turning on notifications_2.png b/Scripts/Walmart_Screenshots/Tips for setting your password & turning on notifications_2.png new file mode 100644 index 00000000..cebf4388 Binary files /dev/null and b/Scripts/Walmart_Screenshots/Tips for setting your password & turning on notifications_2.png differ diff --git a/Scripts/Walmart_Screenshots/Tips for setting your password & turning on notifications_3.png b/Scripts/Walmart_Screenshots/Tips for setting your password & turning on notifications_3.png new file mode 100644 index 00000000..63206e00 Binary files /dev/null and b/Scripts/Walmart_Screenshots/Tips for setting your password & turning on notifications_3.png differ diff --git a/Scripts/Walmart_Screenshots/Tips for troubleshooting the app_1.png b/Scripts/Walmart_Screenshots/Tips for troubleshooting the app_1.png new file mode 100644 index 00000000..8f57d65e Binary files /dev/null and b/Scripts/Walmart_Screenshots/Tips for troubleshooting the app_1.png differ diff --git a/Scripts/Walmart_Screenshots/Tips for troubleshooting the app_2.png b/Scripts/Walmart_Screenshots/Tips for troubleshooting the app_2.png new file mode 100644 index 00000000..6e08db1b Binary files /dev/null and b/Scripts/Walmart_Screenshots/Tips for troubleshooting the app_2.png differ diff --git a/Scripts/Walmart_Screenshots/Tips for troubleshooting the app_3.png b/Scripts/Walmart_Screenshots/Tips for troubleshooting the app_3.png new file mode 100644 index 00000000..a64d7ade Binary files /dev/null and b/Scripts/Walmart_Screenshots/Tips for troubleshooting the app_3.png differ diff --git a/Scripts/Walmart_Screenshots/Tips for troubleshooting the app_4.png b/Scripts/Walmart_Screenshots/Tips for troubleshooting the app_4.png new file mode 100644 index 00000000..58443e7a Binary files /dev/null and b/Scripts/Walmart_Screenshots/Tips for troubleshooting the app_4.png differ diff --git a/Scripts/Walmart_Screenshots/Ways to pick customer items out of sequence_1.png b/Scripts/Walmart_Screenshots/Ways to pick customer items out of sequence_1.png new file mode 100644 index 00000000..073f8b44 Binary files /dev/null and b/Scripts/Walmart_Screenshots/Ways to pick customer items out of sequence_1.png differ diff --git a/Scripts/Walmart_Screenshots/Ways to pick customer items out of sequence_2.png b/Scripts/Walmart_Screenshots/Ways to pick customer items out of sequence_2.png new file mode 100644 index 00000000..cd900beb Binary files /dev/null and b/Scripts/Walmart_Screenshots/Ways to pick customer items out of sequence_2.png differ diff --git a/Scripts/Walmart_Screenshots/combine_to_pdf.py b/Scripts/Walmart_Screenshots/combine_to_pdf.py index 5182ce7f..9bda822a 100644 --- a/Scripts/Walmart_Screenshots/combine_to_pdf.py +++ b/Scripts/Walmart_Screenshots/combine_to_pdf.py @@ -5,6 +5,7 @@ from datetime import date currentdir = "/Users/normrasmussen/Documents/Northpass/Scripts/Walmart_Screenshots/" + def find_pictures(currentdir): files = [] listfiles = glob.glob(currentdir + "*.png") @@ -46,7 +47,7 @@ def process_pictures(new_list, resource_title, currentdir): image_list.append(converted) # image_list.append(image) resource.save( - currentdir + f"/PDFs/{resource_title}_{today}.pdf", + currentdir + f"PDFs/{resource_title}_{today}.pdf", save_all=True, append_images=image_list, ) diff --git a/Scripts/Walmart_Screenshots/resources_api.js b/Scripts/Walmart_Screenshots/resources_api.js index 92a6dec0..fcabd26c 100644 --- a/Scripts/Walmart_Screenshots/resources_api.js +++ b/Scripts/Walmart_Screenshots/resources_api.js @@ -59,45 +59,49 @@ async function courseOverview(id, i, num) { const page = await browser.newPage(); const course = url+id+uid; console.log(course) - await page.setViewport({ width:390, height:844 }) - await page.goto(course, { - waitUntil: 'load', - timeout: 0 }); + if (course.includes("undefined")) { + console.log("Error - Undefined UUID. Possibly end of list. Exiting.") + } else { + await page.setViewport({ width:390, height:844 }) + await page.goto(course, { + waitUntil: 'load', + timeout: 0 }); - await page.title(); - const [getXpath] = await page.$x('/html/body/div[2]/div/div'); - const resourcetitle = await page.evaluate(name => name.innerText, getXpath); - const resource = resourcetitle.trim(); - console.log(resource); + await page.title(); + const [getXpath] = await page.$x('/html/body/div[1]/div'); + const resourcetitle = await page.evaluate(name => name.innerText, getXpath); + const resource = resourcetitle.trim(); + console.log(resource); - await page.screenshot({path: `${resource}_1.png`, fullPage:true, headless:false}); + await page.screenshot({path: `${resource}_1.png`, fullPage:true, headless:false}); - const hrefs = await page.$$eval('a', as => as.map(a => a.href)); - var links = Object.entries(hrefs); - links.forEach(([key, value]) => { - var link = value; - if (link.includes("activities") && (link.includes(id))) { - console.log(link); - activity.push(link); - } - }); - setTimeout(() => { + const hrefs = await page.$$eval('a', as => as.map(a => a.href)); + var links = Object.entries(hrefs); + links.forEach(([key, value]) => { + var link = value; + if (link.includes("activities") && (link.includes(id))) { + console.log(link); + activity.push(link); + } + }); + setTimeout(() => { - }, 5000); - uniqueLinks = [...new Set(activity)]; - for (const link of uniqueLinks) { - num = num+1 - const newlink = link+uid; - await page.setViewport({ width: 390, height: 844 }) - await page.goto(newlink, { - waitUntil: 'load', - timeout: 0 }); - await page.screenshot({path: `${resource}_${num}.png`, fullPage: true, headless: false}); - //screenshots(newlink, resource, num, i); - } - await browser.close(); - i++; - loopIds(i); + }, 5000); + uniqueLinks = [...new Set(activity)]; + for (const link of uniqueLinks) { + num = num+1 + const newlink = link+uid; + await page.setViewport({ width: 390, height: 844 }) + await page.goto(newlink, { + waitUntil: 'load', + timeout: 0 }); + await page.screenshot({path: `${resource}_${num}.png`, fullPage: true, headless: false}); + //screenshots(newlink, resource, num, i); + } + await browser.close(); + i++; + loopIds(i); + } } async function screenshots(newlink, resource, num, i) { diff --git a/Timetagger/_timetagger/users/norm~bm9ybQ==.db b/Timetagger/_timetagger/users/norm~bm9ybQ==.db index 3e97e196..c1d4e9f3 100644 Binary files a/Timetagger/_timetagger/users/norm~bm9ybQ==.db and b/Timetagger/_timetagger/users/norm~bm9ybQ==.db differ