diff options
author | Matthew Lemon <y@yulqen.org> | 2024-12-10 16:53:30 +0000 |
---|---|---|
committer | Matthew Lemon <y@yulqen.org> | 2024-12-10 16:53:30 +0000 |
commit | dfbb7e1868d2adf8ed4a2d7cb73b54d0652b1a4b (patch) | |
tree | 896bb85dcf7d76a5468a68b4fd4c18a448f4e6c9 | |
parent | b896eb2fcfe34667c5ff7d5e0783fe6b2080ae50 (diff) |
Added links and changed order of images
-rw-r--r-- | alphabetlearning/templates/pages/home.html | 13 | ||||
-rw-r--r-- | alphabetlearning/templates/payments/success_email_signup.html | 2 | ||||
-rw-r--r-- | alphabetlearning/templates/payments/verification_sent.html | 2 |
3 files changed, 10 insertions, 7 deletions
diff --git a/alphabetlearning/templates/pages/home.html b/alphabetlearning/templates/pages/home.html index 64c9972..536cbb4 100644 --- a/alphabetlearning/templates/pages/home.html +++ b/alphabetlearning/templates/pages/home.html @@ -136,25 +136,26 @@ <div class="row justify-content-center"> <div class="col-md-4 mb-5 mb-md-0"> <img - src="{% static 'images/funnel4.png' %}" + src="{% static 'images/funnel1.png' %}" class="img-fluid rotated-image" alt="Funnel 1" /> </div> <div class="col-md-4 mb-5 mb-md-0"> <img - src="{% static 'images/funnel5.png' %}" + src="{% static 'images/funnel2.png' %}" class="img-fluid rotated-image" alt="Funnel 2" /> </div> <div class="col-md-4 mb-5 mb-md-0"> <img - src="{% static 'images/funnel6.png' %}" + src="{% static 'images/funnel3.png' %}" class="img-fluid rotated-image" alt="Funnel 3" /> </div> + </div> <div class="row my-5 d-flex align-items-stretch"> @@ -186,21 +187,21 @@ <div class="row justify-content-center my-5"> <div class="col-md-4 mb-5 mb-md-0"> <img - src="{% static 'images/funnel1.png' %}" + src="{% static 'images/funnel4.png' %}" class="img-fluid rotated-image" alt="Funnel 1" /> </div> <div class="col-md-4 mb-5 mb-md-0"> <img - src="{% static 'images/funnel2.png' %}" + src="{% static 'images/funnel5.png' %}" class="img-fluid rotated-image" alt="Funnel 2" /> </div> <div class="col-md-4 mb-5 mb-md-0"> <img - src="{% static 'images/funnel3.png' %}" + src="{% static 'images/funnel6.png' %}" class="img-fluid rotated-image" alt="Funnel 3" /> diff --git a/alphabetlearning/templates/payments/success_email_signup.html b/alphabetlearning/templates/payments/success_email_signup.html index c033d0a..c85b782 100644 --- a/alphabetlearning/templates/payments/success_email_signup.html +++ b/alphabetlearning/templates/payments/success_email_signup.html @@ -81,7 +81,7 @@ </p> <p class="mb-4 fs-5"> - If you have any ideas, suggestions or requests please don’t hesitate to let us know at hello@alphabetlearning.com We would love to hear from you! + If you have any ideas, suggestions or requests please don’t hesitate to let us know at <a href="mailto:help@alphabetlearning.online">help@alphabetlearning.online</a> We would love to hear from you! </p> <p class="mb-4 fs-5"> diff --git a/alphabetlearning/templates/payments/verification_sent.html b/alphabetlearning/templates/payments/verification_sent.html index 063d508..7c44d79 100644 --- a/alphabetlearning/templates/payments/verification_sent.html +++ b/alphabetlearning/templates/payments/verification_sent.html @@ -2,4 +2,6 @@ <h1>Verification Email Sent</h1> <p>Please check your email at {{ email }} to complete your subscription.</p> + <p>Go <a href="{% url "pages:home" %}">Home</a></p> + {% endblock content %} |