| Line 26... |
Line 26... |
| 26 |
<!DOCTYPE html>
|
26 |
<!DOCTYPE html>
|
| 27 |
<html lang="en-US">
|
27 |
<html lang="en-US">
|
| 28 |
<head>
|
28 |
<head>
|
| 29 |
<!--head-->
|
29 |
<!--head-->
|
| 30 |
<?php include_once 'elements/head.php'; ?>
|
30 |
<?php include_once 'elements/head.php'; ?>
|
| - |
|
31 |
<script src="https://www.google.com/recaptcha/api.js?onload=onloadCallback" async defer></script>
|
| - |
|
32 |
<script src="<?php echo PUBLIC_URL; ?>js/recaptcha.js" async defer></script>
|
| 31 |
<!--//head-->
|
33 |
<!--//head-->
|
| 32 |
</head>
|
34 |
</head>
|
| 33 |
<body>
|
35 |
<body>
|
| 34 |
<div class="container-fluid">
|
36 |
<div class="container-fluid">
|
| 35 |
<!--header-->
|
37 |
<!--header-->
|
| Line 63... |
Line 65... |
| 63 |
<?php echo !empty($fieldError['password'])?'<p>'.$fieldError['password'].'</p>':''; ?>
|
65 |
<?php echo !empty($fieldError['password'])?'<p>'.$fieldError['password'].'</p>':''; ?>
|
| 64 |
</div>
|
66 |
</div>
|
| 65 |
<div class="frm-input <?php echo !empty($fieldError['confirm_password'])?'error':''; ?>">
|
67 |
<div class="frm-input <?php echo !empty($fieldError['confirm_password'])?'error':''; ?>">
|
| 66 |
<input type="password" name="confirm_password" class="pass-in" placeholder="Confirm Password" required="">
|
68 |
<input type="password" name="confirm_password" class="pass-in" placeholder="Confirm Password" required="">
|
| 67 |
<?php echo !empty($fieldError['confirm_password'])?'<p>'.$fieldError['confirm_password'].'</p>':''; ?>
|
69 |
<?php echo !empty($fieldError['confirm_password'])?'<p>'.$fieldError['confirm_password'].'</p>':''; ?>
|
| - |
|
70 |
</div>
|
| - |
|
71 |
<div class="frm-input pb-3">
|
| - |
|
72 |
<input class="pr-2" type="checkbox" id="acceptTerms" name="acceptTerms" value="1" required="">
|
| - |
|
73 |
<label class="pl-2" for="checkbox">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>
|
| - |
|
74 |
</div>
|
| - |
|
75 |
<div class="pb-3">
|
| - |
|
76 |
<div class="g-recaptcha" data-sitekey="<?php echo GR_SITE_KEY; ?>" data-badge="inline" data-size="invisible" data-callback="setResponse"></div>
|
| 68 |
</div>
|
77 |
</div>
|
| 69 |
<div class="frm-btn">
|
78 |
<div class="frm-btn">
|
| 70 |
<input type="submit" name="signupSubmit" value="Sign Up">
|
79 |
<input type="submit" name="signupSubmit" value="Sign Up">
|
| 71 |
</div>
|
80 |
</div>
|
| 72 |
</form>
|
81 |
</form>
|