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 %}