Sandata templates for the sign up form. Removed a few test scripts I don't need anymore. Created an Acatble dir.

This commit is contained in:
Norm Rasmussen
2024-04-12 22:59:45 -04:00
parent 958f1ec991
commit 82fd5a2db8
25 changed files with 805 additions and 61 deletions

View File

@ -150,13 +150,15 @@
<i class="np-header-search-icon far fa-search"></i>
</form>
{% for website_navigation in navigations.header_navigations %}
<a
href="{{ website_navigation.path }}"
class="np-header-mobile-menu-content-button"
{% if website_navigation.external? %} target="_blank" {% endif %}
>
{{ website_navigation.name }}
</a>
{% unless website_navigation.name == 'Home' %}
<a
href="{{ website_navigation.path }}"
class="np-header-mobile-menu-content-button"
{% if website_navigation.external? %} target="_blank" {% endif %}
>
{{ website_navigation.name }}
</a>
{% endunless %}
{% endfor %}
<div class="np-header-mobile-menu-content-line"></div>
{% unless current_school.sso_active? %}
@ -178,3 +180,13 @@
</div>
{% include "messages" %}
{% if current_person.signed_in? %}
{% unless current_person.properties.successfully_completed_secondary_registration %}
<script>
if(!localStorage.getItem('completed-second-registration')){
window.location.href = '/app/sign-up-follow-up';
}
</script>
{% endunless %}
{% endif %}