Add camp coupons, add submission code

master
Skylar Ittner 5 years ago
parent 9af6bc7d15
commit 3eaa9f0ed9

Binary file not shown.

@ -10,258 +10,215 @@ require_once __DIR__ . "/../../lib/requiredpublic.php";
require_once __DIR__ . "/../../lib/Email.lib.php";
var_export($_POST);
die();
function errorBack(string $errormsg) {
global $familyid;
header("Location: ../?page=signup&error=" . htmlentities($errormsg));
$database->delete("families", ["familyid" => $familyid]);
die($errormsg);
}
if (!empty($_SESSION['familyid']) && $database->has("families", ['familyid' => $_SESSION['familyid']])) {
$family = $_SESSION['familyid'];
$renewal = true;
} else if (!empty($_POST['renewing'])) {
// Session expired, but we're renewing, so kick them back to verification
header("Location: ../?page=renew&msg=sessionexpired");
die("You took too long and were automatically logged out. Please try again.");
}
$database->action(function($database) {
global $family, $renewal, $SETTINGS;
try {
$lastname = $_POST['familyname'];
$father = $_POST['fathername'];
$mother = $_POST['mothername'];
global $SETTINGS;
if (empty($lastname)) {
errorBack("Enter a last name.");
}
if (empty($father)) {
errorBack("Enter a father name.");
}
if (empty($mother)) {
errorBack("Enter a mother name.");
}
$database->insert("families", []);
$familyid = $database->id();
$family->setName($lastname);
$family->setFather($father);
$family->setMother($mother);
$dueusd = 0.0;
$family->setPhone($_POST['phone']);
$family->setEmail($_POST['email']);
try {
if ($renewal) {
if ($database->has("families", ["AND" => ["email" => $family->getEmail(), "familyid[!]" => $family->getID()]])) {
errorBack("That email address is already in use with another family.");
}
} else {
if ($database->has("families", ["email" => $family->getEmail()])) {
errorBack("That email address is already in use with another family.");
$people = $_POST['people'];
$requiredfields = [
"firstname" => ".+",
"lastname" => ".+",
"address" => ".+",
"zip" => "[0-9]{5}(-?[0-9]{4})?",
"phone1" => "[0-9]{10}",
"email" => "_EMAIL_",
"shirt" => ["YS", "YM", "YL", "AS", "AM", "AL", "AX", "A2"],
"sex" => ["M", "F"]
];
foreach ($people['ids'] as $pid) {
switch ($people["type"][$pid]) {
case "camper":
$checkfields = array_merge($requiredfields, [
"parentname" => ".+",
"unit" => "[0-9]{3,4}",
"rank" => ["Tiger", "Wolf", "Bear", "Webelos", "Arrow of Light"]
]);
break;
case "adult":
$checkfields = array_merge($requiredfields, [
"position" => [
"None",
"Den Walker",
"Station Leader",
"Tot Lot",
"First Aid",
"Floater"
]
]);
break;
case "youth":
$checkfields = array_merge($requiredfields, [
"position" => [
"None",
"Den Chief",
"Station",
"Tot Lot",
"Floater"
]
]);
break;
default:
errorBack("Invalid person type.");
}
}
$address = $_POST['streetaddress'];
$city = $_POST['city'];
$state = strtoupper($_POST['state']);
$zip = $_POST['zip'];
if (empty($address)) {
errorBack("Enter a street address.");
}
if (empty($city)) {
errorBack("Enter a city.");
}
$family->setAddress($address);
$family->setCity($city);
$family->setState($state);
$family->setZip($zip);
$newsletter = $_POST['newsletter_method'];
$membership_cost = 2500;
if (empty($newsletter)) {
errorBack("Select a newsletter preference.");
}
$family->setNewsletter($newsletter);
switch ($newsletter) {
case 1: // Email only
$membership_cost = 2500;
break;
case 2: // Print only
$membership_cost = 3500;
break;
case 3: // Email and print
$membership_cost = 3500;
break;
default:
errorBack("Select a valid newsletter preference.");
}
$photopermission = $_POST['photo_permission'];
if (!empty($photopermission) && $photopermission == "1") {
$photopermission = true;
} else {
$photopermission = false;
}
$family->setPhotoPermission($photopermission);
foreach ($checkfields as $name => $regex) {
$validatefunction = function ($str) use ($regex) {
return preg_match("/$regex/", $str);
};
if (is_array($regex)) {
// Array of options
$validatefunction = function ($str) use ($regex) {
return in_array($str, $regex);
};
} else if (strpos($regex, "_") === 0) {
// Special cases
switch ($regex) {
case "_EMAIL_":
$validatefunction = function ($str) {
return filter_var($str, FILTER_VALIDATE_EMAIL);
};
break;
}
}
if ($renewal) {
// If membership lapsed, add a whole year, otherwise just extend it
if ($family->getExpires() < time()) {
$family->setExpires(strtotime("+1 year"));
} else {
$family->setExpires(strtotime("+1 year", $family->getExpires()));
// Validate
if (!$validatefunction($people[$name][$pid])) {
errorBack("Please check your input and try again ($name).");
}
}
} else {
$family->setExpires(strtotime("+1 year"));
}
$family->save();
//
// Children
//
$children = $_POST['child'];
$childObjects = $family->getChildren();
foreach ($children['ids'] as $cid) {
if (empty($children['name'][$cid])) {
continue;
}
if (!preg_match("/^([1-9]|1[012])$/", $children['month'][$cid])) {
errorBack("Invalid birth month chosen for " . htmlentities($children['name'][$cid]) . ".");
$days = "";
if (is_array($people["days"][$pid])) {
$validdays = ["Tu", "We", "Th", "Fr"];
$days = "";
foreach ($people["days"][$pid] as $day) {
if (in_array($day, $validdays)) {
$days .= $day;
}
}
}
if (!is_numeric($children['year'][$cid])) {
errorBack("Invalid birth year chosen for " . htmlentities($children['name'][$cid]) . ".");
}
$children['year'][$cid] = $children['year'][$cid] * 1;
if ($children['year'][$cid] < 1980 || $children['year'][$cid] > date("Y")) {
errorBack("Invalid birth year chosen for " . htmlentities($children['name'][$cid]) . ".");
switch ($people["type"][$pid]) {
case "camper":
$dueusd += 50.0;
echo "\nAdding $50 to the total for a camper, dueusd is $dueusd\n";
$database->insert("campers", [
"parentname" => $people["parentname"][$pid],
"rank" => $people["rank"][$pid]
]);
$camperid = $database->id();
break;
case "adult":
$discount = 10.0 * (strlen($days) / 2);
$dueusd -= $discount;
echo "\Subtracting $$discount from the total for an adult volunteer, dueusd is $dueusd\n";
$database->insert("adults", [
"position" => $people["position"][$pid],
"days" => $days
]);
$adultid = $database->id();
break;
case "youth":
$database->insert("youth", [
"position" => $people["position"][$pid],
"days" => $days
]);
$youthid = $database->id();
break;
}
if (Child::exists($cid, $family->getID())) {
// iterate over existing children to find the correct one
for ($i = 0; $i < count($childObjects); $i++) {
if ($childObjects[$i]->getID() == $cid) {
$childObjects[$i]->setName($children['name'][$cid]);
$childObjects[$i]->setBirthday(null, $children['year'][$cid] . "-" . $children['month'][$cid] . "-00");
$childObjects[$i]->setGraduated(empty($children['graduate'][$cid]) ? false : true);
}
}
} else {
$child = new Child();
$child->setName($children['name'][$cid]);
$child->setBirthday(null, $children['year'][$cid] . "-" . $children['month'][$cid] . "-00");
$child->setGraduated(empty($children['graduate'][$cid]) ? false : true);
$child->setFamilyID($family->getID());
$childObjects[] = $child;
}
}
foreach ($childObjects as $child) {
$child->save();
$database->insert("people", [
"familyid" => $familyid,
"camperid" => $camperid,
"adultid" => $adultid,
"youthid" => $youthid,
"firstname" => $people["firstname"][$pid],
"lastname" => $people["lastname"][$pid],
"address" => $people["address"][$pid],
"zip" => $people["zip"][$pid],
"phone1" => empty($people["phone1"][$pid] ? "" : $people["phone1"][$pid]),
"phone2" => empty($people["phone2"][$pid] ? "" : $people["phone2"][$pid]),
"email" => empty($people["email"][$pid] ? "" : $people["email"][$pid]),
"unit" => $people["unit"][$pid],
"shirt" => $people["shirt"][$pid],
"sex" => $people["sex"][$pid]
]);
}
} catch (Exception $ex) {
errorBack($ex->getMessage());
}
//
// Interests
//
$database->delete('interests', ['familyid' => $family->getID()]);
if (!empty($_POST['events']) && is_array($_POST['events'])) {
$interests = [];
foreach ($_POST['events'] as $evt) {
if ($database->has("events", ['eventid' => $evt])) {
$interests[] = ["familyid" => $family->getID(), "eventid" => $evt];
}
}
$database->insert("interests", $interests);
}
//
// Payment
//
try {
\Stripe\Stripe::setApiKey($SETTINGS["stripe"]["seckey"]);
$charge = \Stripe\Charge::create([
'amount' => $membership_cost,
'currency' => 'usd',
'description' => 'HACHE Membership',
'source' => $_POST['stripeToken'],
'statement_descriptor' => 'HACHE Membership 1yr',
]);
} catch (\Stripe\Error\Card $e) {
$body = $e->getJsonBody();
$err = $body['error'];
errorBack("We couldn't process your card because it was declined. Your card issuer or bank sent us this message: " . $err["message"] . " That's all we know.");
} catch (\Stripe\Error\RateLimit $e) {
errorBack("We couldn't process your card because things are happening too fast. Please try again in a minute. (Error code: STRIPE_RATELIMIT)");
} catch (\Stripe\Error\InvalidRequest $e) {
errorBack("We couldn't process your card because of a technical issue. Please try again later. (Error code: STRIPE_INVREQ)");
} catch (\Stripe\Error\Authentication $e) {
errorBack("We can't connect to the card processor. Please try again later. (Error code: STRIPE_AUTH)");
} catch (\Stripe\Error\ApiConnection $e) {
errorBack("We can't connect to the card processor. Please try again later. (Error code: STRIPE_NOAPI)");
} catch (\Stripe\Error\Base $e) {
errorBack("An unknown payment error occurred. Please try again later.");
} catch (Exception $e) {
errorBack("An unknown error occurred. Please try again later.");
}
$campcoupons = (!empty($_POST['campcoupons']) && preg_match("/[0-9]+/", $_POST['campcoupons'])) ? $_POST['campcoupons'] * 1 : 0;
$database->insert("payments", [
"familyid" => $family->getID(),
"amount" => ($membership_cost / 100.0),
"paid" => 1,
"date" => date("Y-m-d H:i:s"),
"type" => "Online"
]);
$duecard = $dueusd - $campcoupons;
try {
$confirmation = new Email();
$confirmation->addTo($family->getEmail());
$confirmation->setFrom($SETTINGS["smtp"]["fromaddress"], $SETTINGS["smtp"]["fromname"]);
$confirmation->setSMTP($SETTINGS["smtp"]["host"], $SETTINGS["smtp"]["port"], $SETTINGS["smtp"]["auth"], $SETTINGS["smtp"]["user"], $SETTINGS["smtp"]["password"], $SETTINGS["smtp"]["secure"]);
if ($renewal) {
$confirmation->setSubject("HACHE renewal confirmation");
$confirmation->setBody("Your membership renewal has been processed.\r\n"
. "Your membership will expire on" . date("F j Y", $family->getExpires()) . ".\r\n"
. "Thanks for being a HACHE member!");
} else {
$confirmation->setSubject("HACHE membership confirmation");
$confirmation->setBody("Your membership and payment have been recorded.\r\n"
. "A HACHE member will be in touch in the next few days.\r\n"
. "Thanks again and welcome to HACHE!");
}
$confirmation->send();
} catch (Exception $e) {
echo "\nCost $dueusd total: $duecard to Stripe, $campcoupons as coupons\n";
if ($_POST['totalcharge'] != $dueusd) {
errorBack("There was a discrepency between the total you saw and the total the server calculated. The transaction has been cancelled and you were not charged.");
}
try {
$notification = new Email();
$notification->addTo($SETTINGS["smtp"]["notification_to"]);
$notification->setFrom($SETTINGS["smtp"]["fromaddress"], $SETTINGS["smtp"]["fromname"]);
$notification->setSMTP($SETTINGS["smtp"]["host"], $SETTINGS["smtp"]["port"], $SETTINGS["smtp"]["auth"], $SETTINGS["smtp"]["user"], $SETTINGS["smtp"]["password"], $SETTINGS["smtp"]["secure"]);
if ($renewal) {
$notification->setSubject("HACHE renewal notification");
$notification->setBody("The " . $family->getName() . " family has renewed their HACHE membership.");
} else {
$notification->setSubject("HACHE membership notification");
$notification->setBody("The " . $family->getName() . " family has registered for a HACHE membership.");
if ($duecard > 0) {
try {
\Stripe\Stripe::setApiKey($SETTINGS["stripe"]["seckey"]);
$charge = \Stripe\Charge::create([
'amount' => $duecard * 100.0,
'currency' => 'usd',
'description' => 'Day Camp',
'source' => $_POST['stripeToken'],
'statement_descriptor' => 'PPD Day Camp',
]);
} catch (\Stripe\Error\Card $e) {
$body = $e->getJsonBody();
$err = $body['error'];
errorBack("We couldn't process your card because it was declined. Your card issuer or bank sent us this message: " . $err["message"] . " That's all we know.");
} catch (\Stripe\Error\RateLimit $e) {
errorBack("We couldn't process your card because things are happening too fast. Please try again in a minute. (Error code: STRIPE_RATELIMIT)");
} catch (\Stripe\Error\InvalidRequest $e) {
errorBack("We couldn't process your card because of a technical issue. Please try again later. (Error code: STRIPE_INVREQ)");
} catch (\Stripe\Error\Authentication $e) {
errorBack("We can't connect to the card processor. Please try again later. (Error code: STRIPE_AUTH)");
} catch (\Stripe\Error\ApiConnection $e) {
errorBack("We can't connect to the card processor. Please try again later. (Error code: STRIPE_NOAPI)");
} catch (\Stripe\Error\Base $e) {
errorBack("An unknown payment error occurred. Please try again later.");
} catch (Exception $e) {
errorBack("An unknown error occurred. Please try again later.");
}
$notification->send();
} catch (Exception $e) {
}
$database->insert("payments", [
"familyid" => $familyid,
"amount" => ($dueusd),
"amountpaid" => ($duecard),
"date" => date("Y-m-d H:i:s"),
"type" => "Online"
]);
header("Location: ../?page=thanks");
var_dump($_POST);
return true;
});

@ -133,29 +133,48 @@ if (isset($_SESSION['familyid']) && $database->has('families', ['familyid' => $_
</div>
<div class="card-body">
<h4>Total: $<span id="total">0</span></h4>
<!-- Hi, don't bother tampering with this, the math is checked on the server before charging the card. -->
<input type="hidden" name="totalcharge" value="0" />
<noscript>
<div class="card-text text-danger mb-1">
<i class="fas fa-code"></i> JavaScript is required to complete your payment.
<div class="row" id="payment-methods" style="display: none;">
<div class="col-12 col-md-8">
<noscript>
<div class="card-text text-danger mb-1">
<i class="fas fa-code"></i> JavaScript is required to complete your payment.
</div>
</noscript>
<label for="card-element">
Credit or debit card:
</label>
<div id="card-element" class="form-control">
</div>
<div id="card-errors" class="alert alert-danger d-none"></div>
<input type="hidden" name="stripeToken" id="stripe-token" required />
<div class="card-text text-success mb-1">
<i class="fas fa-lock"></i> We can't see your card info; it's sent directly and securely from your computer to our payment processor.
</div>
</div>
<div class="col-12 col-md-4">
<div class="form-group">
<label for="campcoupons">Camp Coupons or Scout Bucks:</label>
<div class="input-group">
<div class="input-group-prepend">
<div class="input-group-text">
<i class="fas fa-dollar-sign"></i>
</div>
</div>
<input type="number" step="1" name="campcoupons" class="form-control" value="0" />
</div>
</div>
</div>
</noscript>
<div class="card-text text-success mb-1">
<i class="fas fa-lock"></i> We can't see your card info; it's sent directly and securely from your computer to our payment processor.
</div>
<label for="card-element">
Credit or debit card
</label>
<div id="card-element" class="form-control">
</div>
<div id="card-errors" class="alert alert-danger d-none"></div>
<input type="hidden" name="stripeToken" id="stripe-token" required />
<!-- Hi, don't bother tampering with this, the math is checked on the server. -->
<input type="hidden" name="totalcharge" value="0" />
</div>
<div class="card-footer">
<button type="submit" class="btn btn-teal" id="savebutton">
<span id="savebutton-text">
<i class="fas fa-arrow-right"></i> Submit<span class="d-none d-sm-inline"> Registration and Payment</span>
<i class="fas fa-arrow-right"></i> Submit<span class="d-none d-sm-inline"> Registration</span>
</span>
<span id="savebutton-wait" class="d-none">
<i class="fas fa-spinner fa-spin"></i> Working...

@ -51,7 +51,7 @@ if (isset($personid) && $database->has('people', ['personid' => $personid])) {
<div class="list-group-item person-list-item" data-persontype="<?php echo $type; ?>">
<input type="hidden" name="people[ids][]" value="<?php echo $personid; ?>" />
<input type="hidden" name="persontype" value="<?php echo $type; ?>" />
<input type="hidden" name="people[type][<?php echo $personid; ?>]" value="<?php echo $type; ?>" />
<div class="row">
<?php
@ -259,7 +259,8 @@ if (isset($personid) && $database->has('people', ['personid' => $personid])) {
<div class="input-group">
<?php if (empty($item['type']) || ($item['type'] != "select" && $item['type'] != "checkboxes")) { ?>
<input type="<?php echo (empty($item['type']) ? "text" : $item['type']); ?>"
name="<?php echo $item['name']; ?>"
name="people[<?php echo $item['name']; ?>][<?php echo $personid; ?>]"
data-name="<?php echo $item['name']; ?>"
class="form-control"
placeholder=""
aria-label="<?php echo $item['label']; ?>"
@ -283,7 +284,8 @@ if (isset($personid) && $database->has('people', ['personid' => $personid])) {
?> />
<?php } else if ($item['type'] == "select") { ?>
<select class="form-control"
name="<?php echo $item['name']; ?>"
name="people[<?php echo $item['name']; ?>][<?php echo $personid; ?>]"
data-name="<?php echo $item['name']; ?>"
aria-label="<?php echo $item['label']; ?>"
<?php
if (empty($item['optional'])) {
@ -308,7 +310,7 @@ if (isset($personid) && $database->has('people', ['personid' => $personid])) {
foreach ($item['options'] as $value => $label) {
?>
<div class="form-check m-1">
<input class="form-check-input" type="checkbox" name="<?php echo $item['name']; ?>" value="<?php echo $value; ?>">
<input class="form-check-input" type="checkbox" data-name="<?php echo $item['name']; ?>" name="people[<?php echo $item['name']; ?>][<?php echo $personid; ?>][]" value="<?php echo $value; ?>">
<label class="form-check-label">
<?php echo $label; ?>
</label>

@ -8,14 +8,14 @@ $("#add_camper").click(function () {
var copyfrom = $("#camper_list .person-list-item").first();
$.get("parts/template_person.php", {
type: "camper",
lastname: $("input[name=lastname]", copyfrom).val(),
parentname: $("input[name=parentname]", copyfrom).val(),
address: $("input[name=address]", copyfrom).val(),
zip: $("input[name=zip]", copyfrom).val(),
phone1: $("input[name=phone1]", copyfrom).val(),
phone2: $("input[name=phone2]", copyfrom).val(),
email: $("input[name=email]", copyfrom).val(),
unit: $("input[name=unit]", copyfrom).val()
lastname: $("input[data-name=lastname]", copyfrom).val(),
parentname: $("input[data-name=parentname]", copyfrom).val(),
address: $("input[data-name=address]", copyfrom).val(),
zip: $("input[data-name=zip]", copyfrom).val(),
phone1: $("input[data-name=phone1]", copyfrom).val(),
phone2: $("input[data-name=phone2]", copyfrom).val(),
email: $("input[data-name=email]", copyfrom).val(),
unit: $("input[data-name=unit]", copyfrom).val()
}, function (resp) {
$("#camper_list").append(resp);
updateTotal();
@ -26,12 +26,12 @@ $("#add_adult").click(function () {
var copyfrom = $("#adult_list .person-list-item").first();
$.get("parts/template_person.php", {
type: "adult",
lastname: $("input[name=lastname]", copyfrom).val(),
address: $("input[name=address]", copyfrom).val(),
zip: $("input[name=zip]", copyfrom).val(),
phone1: $("input[name=phone1]", copyfrom).val(),
phone2: $("input[name=phone2]", copyfrom).val(),
email: $("input[name=email]", copyfrom).val()
lastname: $("input[data-name=lastname]", copyfrom).val(),
address: $("input[data-name=address]", copyfrom).val(),
zip: $("input[data-name=zip]", copyfrom).val(),
phone1: $("input[data-name=phone1]", copyfrom).val(),
phone2: $("input[data-name=phone2]", copyfrom).val(),
email: $("input[data-name=email]", copyfrom).val()
}, function (resp) {
$("#adult_list").append(resp);
updateTotal();
@ -42,32 +42,31 @@ $("#add_youth").click(function () {
var copyfrom = $("#youth_list .person-list-item").first();
$.get("parts/template_person.php", {
type: "youth",
lastname: $("input[name=lastname]", copyfrom).val(),
address: $("input[name=address]", copyfrom).val(),
zip: $("input[name=zip]", copyfrom).val(),
parentname: $("input[name=parentname]", copyfrom).val(),
phone2: $("input[name=phone2]", copyfrom).val(),
email: $("input[name=email]", copyfrom).val()
lastname: $("input[data-name=lastname]", copyfrom).val(),
address: $("input[data-name=address]", copyfrom).val(),
zip: $("input[data-name=zip]", copyfrom).val(),
parentname: $("input[data-name=parentname]", copyfrom).val(),
phone2: $("input[data-name=phone2]", copyfrom).val(),
email: $("input[data-name=email]", copyfrom).val()
}, function (resp) {
$("#youth_list").append(resp);
updateTotal();
});
});
$("#camper_list").on("change", "input[name=firstname]", function () {
$("#camper_list").on("change", "input[data-name=firstname]", function () {
updateTotal();
});
$("#adult_list").on("change", "input[name=days]", function () {
$("#adult_list").on("change", "input[data-name=days]", function () {
updateTotal();
});
function updateTotal() {
totalcharge = $(".person-list-item[data-persontype=camper] input[name=firstname]").filter(function () {
totalcharge = $(".person-list-item[data-persontype=camper] input[data-name=firstname]").filter(function () {
return $(this).val() != '';
}).length * 50.0;
totalcharge = totalcharge - $(".person-list-item[data-persontype=adult] input[name=days]:checked").filter(function () {
totalcharge = totalcharge - $(".person-list-item[data-persontype=adult] input[data-name=days]:checked").filter(function () {
return $(this).val() != '';
}).length * 10.0;
@ -77,6 +76,11 @@ function updateTotal() {
// the backend-calculated amount, don't bother being a haxxor
$("#total").text(totalcharge);
$("input[name=totalcharge]").val(totalcharge);
if (totalcharge <= 0) {
$("#payment-methods").css("display", "none");
} else {
$("#payment-methods").css("display", "");
}
}
// Create a Stripe client.
@ -117,23 +121,27 @@ $("#savebutton").click(function (event) {
$("#registrationform").on("submit", function (event) {
event.preventDefault();
// prevent multiple clicks since Stripe can take a few seconds
$("#savebutton").prop("disabled", true);
$("#savebutton-text").addClass("d-none");
$("#savebutton-wait").removeClass("d-none");
stripe.createToken(card).then(function (result) {
if (result.error) {
// Inform the customer that there was an error.
$("#card-errors").removeClass("d-none");
$("#card-errors").text(event.error.message);
$("#savebutton").prop("disabled", false);
$("#savebutton-text").removeClass("d-none");
$("#savebutton-wait").addClass("d-none");
} else {
$("#stripe-token").val(result.token.id);
console.log(result.token);
document.getElementById('membershipform').submit();
}
});
// If we have any charge left after subtracting camp coupons/scout bucks
if ($("input[name=totalcharge]").val() - $("input[name=campcoupons]").val() > 0) {
stripe.createToken(card).then(function (result) {
if (result.error) {
// Inform the customer that there was an error.
$("#card-errors").removeClass("d-none");
$("#card-errors").text(event.error.message);
$("#savebutton").prop("disabled", false);
$("#savebutton-text").removeClass("d-none");
$("#savebutton-wait").addClass("d-none");
} else {
$("#stripe-token").val(result.token.id);
console.log(result.token);
}
});
} else {
document.getElementById('registrationform').submit();
}
});
Loading…
Cancel
Save