Blacklane templates almost completed. Downloaded humly for their requested changes. Chubb notes.

This commit is contained in:
Norm Rasmussen
2023-11-20 17:06:35 -05:00
parent 13487b5d17
commit 16d09ae658
6 changed files with 245 additions and 8 deletions

View File

@ -47,11 +47,30 @@
value="{{ form.email | escape }}"
/>
</div>
<div class="np-form-field">
<label class="np-input-label">
Region
</label>
<select
class="sign-up-region np-input"
type="text"
name="group-dropdown"
id="sign-up-group-dropdown"
required >
<option class="info-group-option" value="APAC/EMEA">
APAC/EMEA
</option>
<option class="info-group-option" value="AMERICAS">
Americas
</option>
</select>
</div>
<input
type="submit"
name="commit"
value="{% t shared.enter %}"
class="np-button np-button-big np-form-action"
<button class="addtl-button" onclick="submitData()"></button>
/>
</form>
</div>
@ -60,17 +79,17 @@
<script>
let submitData = async () => {
if(
($(".sign-up-follow-up-store-name")[0].value.length > 0) && $(".sign-up-follow-up-city")[0].value.length > 0 && $("#sign-up-state-dropdown")[0].value.length != 0
){
//if(
// ($(".sign-up-region")[0].value.length > 0)
// ){
function webhookCaller(){
return new Promise(function(res, rej) {
let xhr = new XMLHttpRequest();
url = "https://webhooks.workato.com/webhooks/rest/4c162498-2fc6-4d3f-b5ea-6b98218b2c39/sign-up-follow-up";
url = "https://webhooks.workato.com/webhooks/rest/a36b1f7c-07c7-48ff-bc0f-cb3777d02c81/blacklane-new-driver-region-seg";
xhr.addEventListener("load", e => {
window.location.replace('/app/waiting-room');
window.location.replace('/app/');
//window.location.replace('/app');
});
xhr.open("POST", url, true);
@ -78,9 +97,7 @@
email: '{{ current_person.email }}',
name: "{{ current_person.first_name }} {{ current_person.last_name }}",
user_id: '{{ current_person.id }}',
user_city: $(".sign-up-follow-up-city")[0].value,
user_state: $("#sign-up-state-dropdown")[0].value,
user_store_name: $(".sign-up-follow-up-store-name")[0].value
user_region: $(".sign-up-region")[0].value,
}))
})
}