added site tracking and updated urls

This commit is contained in:
2025-04-21 06:27:34 -05:00
parent 636cf3d45d
commit 77ccc5c2fe
6 changed files with 22 additions and 62 deletions

View File

@@ -12,6 +12,8 @@
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/bootstrap-icons@1.10.0/font/bootstrap-icons.css">
<!-- Custom CSS -->
<link href="{% static 'css/style2.css' %}" rel="stylesheet" type="text/css" />
<script async defer src="https://tianji.aimloperations.com/tracker.js" data-website-id="cm9qziuid9vr7v6dtdbnx8406"></script>
</head>
<body>
<!-- Navigation -->
@@ -76,7 +78,7 @@
</div>
<hr class="my-4 text-white-50">
<div class="row align-items-center">
<div id="footer">&copy; Stonehedge Community Homeowners Association 2010-<script>document.write( new Date().getFullYear() );</script>. All rights reserved
<div id="footer">&copy; Stonehedge Community Homeowners Association 2010-<script>document.write( new Date().getFullYear() );</script>. All rights reserved | Developed by <a href="https://aimloperations.com">AI ML Operations, LLC</a>
</div>
</div>
</footer>

View File

@@ -1,4 +1,4 @@
{% extends 'schasite/base.html' %}
{% extends 'schasite/base2.html' %}
{% load static %}
{% block pagetitle %}

View File

@@ -1,4 +1,4 @@
{% extends 'schasite/base.html' %}
{% extends 'schasite/base2.html' %}
{% load static %}
{% block pagetitle %}

View File

@@ -339,19 +339,6 @@
</div>
</fieldset>
<!-- Terms & Submit -->
<div class="mb-3">
<div class="form-check">
<input class="form-check-input" type="checkbox" id="agreeTerms" required>
<label class="form-check-label" for="agreeTerms">
I agree to the <a href="#" data-bs-toggle="modal" data-bs-target="#termsModal">Terms and Conditions</a>*
</label>
<div class="invalid-feedback">
You must agree before submitting.
</div>
</div>
</div>
<div class="d-grid gap-2 d-md-flex justify-content-md-end">
{% if captchaForm %}
{{ captchaForm }}
@@ -367,35 +354,6 @@
</div>
</main>
<!-- Terms Modal -->
<div class="modal fade" id="termsModal" tabindex="-1" aria-labelledby="termsModalLabel" aria-hidden="true">
<div class="modal-dialog modal-lg">
<div class="modal-content">
<div class="modal-header">
<h5 class="modal-title" id="termsModalLabel">Membership Terms and Conditions</h5>
<button type="button" class="btn-close" data-bs-dismiss="modal" aria-label="Close"></button>
</div>
<div class="modal-body">
<h6>Greenwood Estates HOA Membership Agreement</h6>
<p>By joining the Greenwood Estates Homeowners Association, you agree to:</p>
<ol>
<li>Abide by the community covenants, conditions, and restrictions (CC&Rs)</li>
<li>Pay annual membership dues in a timely manner</li>
<li>Participate in community standards and guidelines</li>
<li>Receive communications from the HOA board and committees</li>
<li>Have your contact information shared with other members for community purposes</li>
</ol>
<p>Your membership helps maintain our community's quality and property values. The HOA board reserves the right to approve or deny membership applications.</p>
<h6>Privacy Policy</h6>
<p>Your personal information will be used solely for HOA communications and operations. We do not sell or share member information with third parties except as required for community management.</p>
</div>
<div class="modal-footer">
<button type="button" class="btn btn-success" data-bs-dismiss="modal">I Understand</button>
</div>
</div>
</div>
</div>
{% endblock %}

View File

@@ -3,23 +3,23 @@ from django.urls import path
from . import views
urlpatterns = [
path("", views.index, name="index"),
path("useful_links", views.useful_links, name="useful_links"),
path("about_us", views.about_us, name="about_us"),
path("calendar", views.calendar, name="calendar"),
path("newsletters", views.newsletters, name="newsletters"),
path("dues", views.dues, name="dues"),
path("membership_form", views.membership_form, name="membership_form"),
path("scha_board", views.scha_board, name="scha_board"),
# path("", views.index, name="index"),
# path("useful_links", views.useful_links, name="useful_links"),
# path("about_us", views.about_us, name="about_us"),
# path("calendar", views.calendar, name="calendar"),
# path("newsletters", views.newsletters, name="newsletters"),
# path("dues", views.dues, name="dues"),
# path("membership_form", views.membership_form, name="membership_form"),
# path("scha_board", views.scha_board, name="scha_board"),
# updated UI urls
path("index2", views.index2, name="index2"),
path("about_us2", views.about_us2, name="about_us2"),
path("calendar2", views.calendar2, name="calendar2"),
path("newsletters2", views.newsletters2, name="newsletters2"),
path("dues2", views.dues2, name="dues2"),
path("membership_form2", views.membership_form2, name="membership_form2"),
path("scha_board2", views.scha_board2, name="scha_board2"),
path("useful_links2", views.useful_links2, name="useful_links2"),
path("", views.index2, name="index2"),
path("about_us", views.about_us2, name="about_us2"),
path("calendar", views.calendar2, name="calendar2"),
path("newsletters", views.newsletters2, name="newsletters2"),
path("dues", views.dues2, name="dues2"),
path("membership_form", views.membership_form2, name="membership_form2"),
path("scha_board", views.scha_board2, name="scha_board2"),
path("useful_links", views.useful_links2, name="useful_links2"),
# stripe specific urls below
path("config/", views.stripe_config),
path("create-checkout-session/", views.create_checkout_session),