| Line 45... |
Line 45... |
| 45 |
</div>
|
45 |
</div>
|
| 46 |
<div class="top">
|
46 |
<div class="top">
|
| 47 |
<?php echo !empty($statusMsg) ? '<p class="status-msg ' . $statusMsgType . '">' . $statusMsg . '</p>' : ''; ?>
|
47 |
<?php echo !empty($statusMsg) ? '<p class="status-msg ' . $statusMsgType . '">' . $statusMsg . '</p>' : ''; ?>
|
| 48 |
<form action="<?php echo BASE_URL; ?>userAccount.php" method="post">
|
48 |
<form action="<?php echo BASE_URL; ?>userAccount.php" method="post">
|
| 49 |
<div class="frm-input <?php echo !empty($fieldError['first_name']) ? 'error' : ''; ?>">
|
49 |
<div class="frm-input <?php echo !empty($fieldError['first_name']) ? 'error' : ''; ?>">
|
| 50 |
<input type="text" name="first_name" class="user-in" placeholder="First name" aria-label="First name" value="<?php echo !empty($signup_post_data['first_name']) ? $signup_post_data['first_name'] : ''; ?>" required="">
|
50 |
<input type="text" name="first_name" class="user-in" placeholder="First name" aria-label="First name" value="<?php echo !empty($signup_post_data['first_name']) ? $signup_post_data['first_name'] : ''; ?>" required="" />
|
| 51 |
<?php echo !empty($fieldError['first_name']) ? '<p>' . $fieldError['first_name'] . '</p>' : ''; ?>
|
51 |
<?php echo !empty($fieldError['first_name']) ? '<p>' . $fieldError['first_name'] . '</p>' : ''; ?>
|
| 52 |
</div>
|
52 |
</div>
|
| 53 |
<div class="frm-input <?php echo !empty($fieldError['last_name']) ? 'error' : ''; ?>">
|
53 |
<div class="frm-input <?php echo !empty($fieldError['last_name']) ? 'error' : ''; ?>">
|
| 54 |
<input type="text" name="last_name" class="user-in" placeholder="Last name" aria-label="Last name" value="<?php echo !empty($signup_post_data['last_name']) ? $signup_post_data['last_name'] : ''; ?>">
|
54 |
<input type="text" name="last_name" class="user-in" placeholder="Last name" aria-label="Last name" value="<?php echo !empty($signup_post_data['last_name']) ? $signup_post_data['last_name'] : ''; ?>" />
|
| 55 |
<?php echo !empty($fieldError['last_name']) ? '<p>' . $fieldError['last_name'] . '</p>' : ''; ?>
|
55 |
<?php echo !empty($fieldError['last_name']) ? '<p>' . $fieldError['last_name'] . '</p>' : ''; ?>
|
| 56 |
</div>
|
56 |
</div>
|
| 57 |
<div class="frm-input">
|
57 |
<div class="frm-input">
|
| 58 |
<input type="text" name="zip" class="addr-in" placeholder="Zip" aria-label="Zip Code" value="<?php echo !empty($signup_post_data['zip']) ? $signup_post_data['zip'] : ''; ?>">
|
58 |
<input type="text" name="zip" class="addr-in" placeholder="Zip" aria-label="Zip Code" value="<?php echo !empty($signup_post_data['zip']) ? $signup_post_data['zip'] : ''; ?>" />
|
| 59 |
</div>
|
59 |
</div>
|
| 60 |
<div class="frm-input <?php echo !empty($fieldError['email']) ? 'error' : ''; ?>">
|
60 |
<div class="frm-input <?php echo !empty($fieldError['email']) ? 'error' : ''; ?>">
|
| 61 |
<input type="email" name="email" class="email-in" placeholder="Email" aria-label="Email Address" value="<?php echo !empty($signup_post_data['email']) ? $signup_post_data['email'] : ''; ?>" required="" autocomplete="username">
|
61 |
<input type="email" name="email" class="email-in" placeholder="Email" aria-label="Email Address" value="<?php echo !empty($signup_post_data['email']) ? $signup_post_data['email'] : ''; ?>" required="" autocomplete="username" />
|
| 62 |
<?php echo !empty($fieldError['email']) ? '<p>' . $fieldError['email'] . '</p>' : ''; ?>
|
62 |
<?php echo !empty($fieldError['email']) ? '<p>' . $fieldError['email'] . '</p>' : ''; ?>
|
| 63 |
</div>
|
63 |
</div>
|
| 64 |
<div class="frm-input <?php echo !empty($fieldError['password']) ? 'error' : ''; ?>">
|
64 |
<div class="frm-input <?php echo !empty($fieldError['password']) ? 'error' : ''; ?>">
|
| 65 |
<input type="password" name="password" class="pass-in" placeholder="Password" aria-label="Password" required="" autocomplete="new-password">
|
65 |
<input type="password" name="password" class="pass-in" placeholder="Password" aria-label="Password" required="" autocomplete="new-password" />
|
| 66 |
<?php echo !empty($fieldError['password']) ? '<p>' . $fieldError['password'] . '</p>' : ''; ?>
|
66 |
<?php echo !empty($fieldError['password']) ? '<p>' . $fieldError['password'] . '</p>' : ''; ?>
|
| 67 |
</div>
|
67 |
</div>
|
| 68 |
<div class="frm-input <?php echo !empty($fieldError['confirm_password']) ? 'error' : ''; ?>">
|
68 |
<div class="frm-input <?php echo !empty($fieldError['confirm_password']) ? 'error' : ''; ?>">
|
| 69 |
<input type="password" name="confirm_password" class="pass-in" placeholder="Confirm Password" aria-label="Confirm Password" required="" autocomplete="new-password">
|
69 |
<input type="password" name="confirm_password" class="pass-in" placeholder="Confirm Password" aria-label="Confirm Password" required="" autocomplete="new-password" />
|
| 70 |
<?php echo !empty($fieldError['confirm_password']) ? '<p>' . $fieldError['confirm_password'] . '</p>' : ''; ?>
|
70 |
<?php echo !empty($fieldError['confirm_password']) ? '<p>' . $fieldError['confirm_password'] . '</p>' : ''; ?>
|
| 71 |
</div>
|
71 |
</div>
|
| 72 |
<div class="check pb-3 pt-2">
|
72 |
<div class="check pb-3 pt-2">
|
| 73 |
<p id="acceptPoliciesMsg"></p>
|
73 |
<p id="acceptPoliciesMsg"></p>
|
| 74 |
<input type="checkbox" id="acceptPolicies" name="acceptPolicies" value="1" required="">
|
74 |
<input type="checkbox" id="acceptPolicies" name="acceptPolicies" value="1" required="" />
|
| 75 |
<label for="acceptPolicies"><span></span>I agree to the <a href="../terms.php" target="_blank">Terms of Service</a> and I accept the <a href="../privacy.php" target="_blank">Privacy Policy</a>.</label>
|
75 |
<label for="acceptPolicies"><span></span>I agree to the <a href="../terms.php" target="_blank">Terms of Service</a> and I accept the <a href="../privacy.php" target="_blank">Privacy Policy</a>.</label>
|
| 76 |
</div>
|
76 |
</div>
|
| 77 |
<div class="pb-3">
|
77 |
<div class="pb-3">
|
| 78 |
<div class="g-recaptcha" data-sitekey="<?php echo GR_SITE_KEY; ?>" data-badge="inline" data-size="invisible" data-callback="setResponse"></div>
|
78 |
<div class="g-recaptcha" data-sitekey="<?php echo GR_SITE_KEY; ?>" data-badge="inline" data-size="invisible" data-callback="setResponse"></div>
|
| 79 |
</div>
|
79 |
</div>
|