From 1d827534a5ae00fd4a5c28f698439f1363118d13 Mon Sep 17 00:00:00 2001 From: Steve Sutton Date: Thu, 16 Nov 2017 16:44:03 -0500 Subject: [PATCH] Update the check page for small view adding in the small-12 for mobile --- views/front/registrations/checkout.html | 160 ++++++++++++------------ 1 file changed, 80 insertions(+), 80 deletions(-) diff --git a/views/front/registrations/checkout.html b/views/front/registrations/checkout.html index d233050..e5e495a 100644 --- a/views/front/registrations/checkout.html +++ b/views/front/registrations/checkout.html @@ -17,7 +17,7 @@ {/if} -{if $haveCart} +{if $haveCart}
@@ -38,56 +38,56 @@

Account Information

{if $regAccountId == 0}
-
E-Mail Address:
-
+
E-Mail Address:
+
-
Password:
-
+
Password:
+

A password is required to access your registrations and submissions in the future. A suggested password has been supplied.

{else}
-
E-Mail Address:
-
+
E-Mail Address:
+
{$regAccount.fieldData.email} {* Required to keep E-Mail address from being cleared *}
{/if}
-
First Name:
-
+
First Name:
+
-
Last Name:
-
+
Last Name:
+
-
Organization:
-
+
Organization:
+
-
Title:
-
+
Title:
+
-
Address:
-
+
Address:
+
-
 
-
+
 
+
-
City:
-
+
City:
+
-
State/Province:
-
+
State/Province:
+
+
Zip/Postal Code:
+
-
Country:
-
+
Country:
+
 Same as Account Information
+
 Same as Account Information
-
First Name:
-
+
First Name:
+
-
Last Name:
-
+
Last Name:
+
-
Address:
-
+
Address:
+
-
 
-
+
 
+
-
City:
-
+
City:
+
-
State:
-
+
State:
+
-
Zip/Postal Code:
-
+
Zip/Postal Code:
+
-
Country:
-
+
Country:
+
+
Phone:
+
-
FAX:
-
+
FAX:
+
@@ -183,7 +183,7 @@

Payment Information

- + {$pm = $payMethodsNumb.NoCharge} {if $payMethods.{$pm}.default}
@@ -196,8 +196,8 @@
-
Enter code:
-
+
Enter code:
+
@@ -209,7 +209,7 @@

*** Cash ****

- + {/if} {$pm = $payMethodsNumb.Check} {if $payMethods.{$pm}.default} @@ -230,14 +230,14 @@
-
Name on Card:
-
+
Name on Card:
+
-
Card Type:
-
+
Card Type:
+
-
Card Expiration:
-
+
Card Expiration:
+
-
CVV:
-
+
CVV:
+
-
+
{/if} {$pm = $payMethodsNumb.PayPal} @@ -321,20 +321,20 @@
You have one more step to complete your registration!
- + - +
Please wait while we process your registration request. If you don't see a new page, your registration request may not have been processed.

Something may have gone wrong.

It may be that your registration request was received and processed and you didn't receive our response yet. If you still don't see a response in a while, try returning to the cart using the button above. - If still don't see any response, please check your E-Mail to see if you have been sent a confirmation. + If still don't see any response, please check your E-Mail to see if you have been sent a confirmation.

- In any case, we will never process your request more than once. If you can return to the cart, it should say if + In any case, we will never process your request more than once. If you can return to the cart, it should say if your request was recieved and processed. If not, you may try the checkout process again or come back later.

@@ -452,8 +452,8 @@ $('.payMethodSelector').on('change', function() { // Get the value from the selected Payment Method - var payMethod = $(this).val(); - + var payMethod = $(this).val(); + // Hide all pay method inputs and dissable them all $('.payMethodSelection').addClass('glm-hidden'); $('.payMethodInput').attr('disabled', true); @@ -461,7 +461,7 @@ // Show the selected pay method inputs and enable just those $('#payMethod_' + payMethod).removeClass('glm-hidden'); $('.payMethodInput_' + payMethod).removeAttr('disabled'); - + }); // Dissable checkout button when first clicked to prevent multiple attempts @@ -479,21 +479,21 @@ // Dissable the checkout button and replace button text $('#regSubmitButton').attr('disabled', true); $('#regSubmitButton').val('Processing ... please Wait!'); - + }); // Start with all pay method inputs dissabled $( document ).ready(function() { // Dialog box to show when submitting checkout page - $( "#regSubmitDialog" ).dialog({ - autoOpen: false, + $( "#regSubmitDialog" ).dialog({ + autoOpen: false, width: 600 }); // Dialog box to show if no answer from checkout submission after some time - $( "#regSubmitFailDialog" ).dialog({ - autoOpen: false, + $( "#regSubmitFailDialog" ).dialog({ + autoOpen: false, width: 600 }); @@ -516,14 +516,14 @@ $('.glm-reg-bill-field').addClass('glm-hidden'); } else { $('.glm-reg-bill-field').removeClass('glm-hidden'); - } + } }; isBillSameChecked(); - + // Various input masks for credit card input $(".cc-input").mask("9999999999999?999"); $(".expire-input").mask("99/99"); $(".cvv-input").mask("999?9"); - + }); - \ No newline at end of file + -- 2.17.1