small script changes. Updates to G2's modal popup.

This commit is contained in:
Norm Rasmussen
2023-06-16 16:13:44 -04:00
parent 807739cae6
commit b526e92bfc
43 changed files with 2796 additions and 43 deletions

View File

@ -6,6 +6,10 @@
{% endif %}
{% endfor %}
<script>
window.location.replace('/app');
</script>
<body>
{% include "header" %}
<main class="np-main np-box-container">
@ -46,6 +50,7 @@
</label>
<select
class="np-input"
type="text"
name="learner[role]"
id="learner_role"
required
@ -56,6 +61,24 @@
<option class="selection-option" value="other">Other</option>
</select>
</div>
<div class="np-form-field">
<label class="np-input-label" for="hear_about">
</label>
<select
class="np-input"
type="text"
name="how_did_you_hear"
id="how_did_you_hear"
required
>
<option value="" selected>How did you Hear about Skuid Skool?</option>
<option value="My Colleague or Team Member">My Colleague or Team Member</option>
<option value="Skuid Team Member/Skuid Employee">Skuid Team Member/Skuid Employee</option>
<option value="Skuid newsletter, email, social media or other form of Skuid communication">Skuid newsletter, email, social media or other form of Skuid communication</option>
<option value="Internet Search">Internet Search</option>
<option value="Other">Other</option>
</select>
</div>
</form>
<button id="send_button" onclick="SendInfos()" class="np-button np-button-big np-button-large-font np-form-action" style="border-radius: 56px;">
Update Information
@ -192,7 +215,6 @@
#learner_role {
color: #1B1C1D;
text-align: left;
text-align-last: left;
}
@media only screen and (min-width: 1190px) {
.hero-image-left-desktop {
@ -263,7 +285,7 @@
function checkIfInputsExist (){
window.setTimeout(function(){
if ($("#learner_company")[0].value.length * $("#learner_title")[0].value.length && $("#learner_role")[0].value != "Your Skuid Builder Role") {
if ($("#learner_company")[0].value.length * $("#learner_title")[0].value.length && $("#learner_role")[0].value != "Your Skuid Builder Role" && $("#how_did_you_hear")[0].value.length != 0) {
$("#send_button").css("background-color","#005cb9");
$("#send_button").css("pointer-events","auto");
}
@ -275,6 +297,7 @@
}
document.addEventListener('keydown', checkIfInputsExist);
document.getElementById("learner_role").addEventListener('change', checkIfInputsExist);
$("#how_did_you_hear")[0].addEventListener('change', checkIfInputsExist);
function SendInfos() {
var xhr = new XMLHttpRequest();
@ -290,7 +313,10 @@
user_id: '{{ current_person.id }}',
company: $("#learner_company")[0].value,
title: $("#learner_title")[0].value,
role: $("#learner_role")[0].value
role: $("#learner_role")[0].value,
email: '{{ current_person.email }}',
name: '{{ current_person.first_name }} {{ current_person.last_name }}',
howDidYouHear: $('#how_did_you_hear')[0].value
}));
};
</script>