29 lines
1.2 KiB
Plaintext
29 lines
1.2 KiB
Plaintext
@{
|
||
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">
|
||
We’re 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 we’re 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> |