From a60124859adbe4ab78531d71202f783b58970618 Mon Sep 17 00:00:00 2001 From: Skylar Ittner Date: Mon, 8 Feb 2021 23:27:41 -0700 Subject: [PATCH] Add helper text to home page, collect email and phone for notice slip, rename Destination Code to Express Pickup --- www/assets/js/noticeslip.js | 2 ++ www/pages/addresscode.html | 2 +- www/pages/home.html | 15 +++++---------- www/pages/noticeslip.html | 26 ++++++++++++++++++++++++-- www/routes.js | 20 +++++++++++++++----- 5 files changed, 47 insertions(+), 18 deletions(-) diff --git a/www/assets/js/noticeslip.js b/www/assets/js/noticeslip.js index 05e6dbd..3788f10 100644 --- a/www/assets/js/noticeslip.js +++ b/www/assets/js/noticeslip.js @@ -202,6 +202,8 @@ function submitNoticeSlip() { name: $("#noticeform #name").val(), street: $("#noticeform #street").val(), zip: $("#noticeform #zip").val(), + phone: $("#noticeform #phone").val(), + email: $("#noticeform #email").val(), front: frontSlipImg, back: backSlipImg, signature: signaturePad.toDataURL(), diff --git a/www/pages/addresscode.html b/www/pages/addresscode.html index 9070f99..7bb0133 100644 --- a/www/pages/addresscode.html +++ b/www/pages/addresscode.html @@ -13,7 +13,7 @@ Back -
Destination Code
+
Express Pickup
diff --git a/www/pages/home.html b/www/pages/home.html index 0f60ab7..1c4f62a 100644 --- a/www/pages/home.html +++ b/www/pages/home.html @@ -19,25 +19,20 @@
-
+
{{#each pages}} -
+
-
+


{{title}} +
+ {{text}}
{{/each}} -
-
-
- TapClick here for a package pickup discount -
-
-
diff --git a/www/pages/noticeslip.html b/www/pages/noticeslip.html index 4e375c8..7699c98 100644 --- a/www/pages/noticeslip.html +++ b/www/pages/noticeslip.html @@ -23,9 +23,13 @@
-
- Missed a delivery? For a fee, we'll pick up your oversized package or signature-required item from the Helena Post Office and deliver it to your front door, even if nobody's home. +
+ Missed a delivery? For a fee, we'll pick up your oversized or signature-required item from the Helena Post Office and deliver it to your front door, even if nobody's home to sign for it. +
+
You just need to fill out this form, sign the back of the pink notice slip, and take a picture of it with this app. Information provided must match the information on the notice slip. +
+
Your item will be delivered within one business day of submitting a request, excluding postal holidays. This service is not available for Restricted Delivery or Registered Mail.
@@ -57,6 +61,24 @@
+
  • +
    +
    Phone Number
    +
    + + +
    +
    +
  • +
  • +
    +
    Email Address
    +
    + + +
    +
    +
  • diff --git a/www/routes.js b/www/routes.js index bcddc82..56b69a3 100644 --- a/www/routes.js +++ b/www/routes.js @@ -17,23 +17,33 @@ var routes = [ { title: "Schedule Pickup", href: "/appointment", - icon: "fad fa-calendar-alt" + icon: "fad fa-calendar-alt", + text: "Request a curbside courier to mail and ship your items." }, { title: "Track Package", href: "/track", - icon: "fad fa-search" + icon: "fad fa-search", + text: "Find the latest location and updates about any shipment." }, { title: "Get Rates", href: "/rates", - icon: "fad fa-calculator" + icon: "fad fa-calculator", + text: "Calculate postage and prices for your item." }, { title: "Pick Up and Redeliver", href: "/noticeslip", - icon: "fad fa-sticky-note" - } + icon: "fad fa-sticky-note", + text: "Take a picture of your pink postal notice slip and we'll go get your missed delivery." + }, + { + title: "Express Pickup", + href: "/addresscode", + icon: "fal fa-qrcode", + text: "Get a faster pickup and a discount by pre-typing the destination address here." + }, ] } });