Files
Clivelancaster/Views/Home/ThankYou.cshtml
2024-12-07 18:31:40 +11:00

29 lines
1.2 KiB
Plaintext
Raw Permalink Blame History

This file contains ambiguous Unicode characters
This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.
@{
ViewData["Title"] = "Thank You";
Layout = "~/Views/Shared/_Layout.cshtml";
}
<div class="container py-4">
<header class="pb-3 mb-4 border-bottom">
<span class="fs-4">@ViewData["Title"]</span>
</header>
<div class="p-5 mb-4 bg-body-tertiary rounded-3 border">
<div class="container-fluid py-2">
<h1 class="display-6 fw-bold">Thank You for Subscribing!</h1>
<p class="col-md-8 fs-6">
Were thrilled to have you as part of our community.
</p><p class="col-md-8 fs-6">
We look forward to keeping you up to date with the latest news, industry insights, and exclusive updates to help you stay ahead in Product Management and Software Developent.
</p><p class="col-md-8 fs-6">
If you ever have any questions or feedback, feel free to reach out were here to help!
</p><p class="col-md-8 fs-6">
Thanks again for subscribing, and stay tuned for exciting content coming your way soon.
</p>
<p class="col-md-8 fs-6">
<a href="/Home/Index" class="btn btn-primary">
Explore!
</a>
</p>
</div>
</div>
</div>