23 lines
450 B
HTML
23 lines
450 B
HTML
{% extends 'schasite/base.html' %}
|
|
{% load static %}
|
|
|
|
{% block pagetitle %}
|
|
<title>Stonehedge Community Homeowners Association</title>
|
|
{% endblock %}
|
|
|
|
{% block content %}
|
|
<script src="https://js.stripe.com/v3/"></script>
|
|
<script src="{% static 'main.js' %}"></script>
|
|
|
|
|
|
<div class="mid-body">
|
|
<h1>Dues <span>Coming soon!</span></h1>
|
|
<button class="button is-primary" id="submitBtn">Pay Dues</button>
|
|
|
|
</div>
|
|
|
|
|
|
|
|
|
|
|
|
{% endblock %} |