Website Refresh
Gitea CI/CD / build (push) Failing after 5m0s

This commit is contained in:
clive
2026-08-11 21:27:27 +10:00
parent 9dab8984ca
commit c72bd65bfa
28 changed files with 1903 additions and 1205 deletions
+10
View File
@@ -0,0 +1,10 @@
@model clivelancaster.Models.SubscribeFormModel
<h4 class="text-white font-semibold mb-4">Stay Connected</h4>
<p class="text-xs mb-4">Subscribe for insights on product strategy and tech trends.</p>
<form asp-action="Index" class="flex flex-col gap-2" method="post">
<label asp-for="email" for="email" class="visually-hidden">Email address</label>
<input asp-for="email" id="email" type="text" placeholder="Email address" autocomplete="on" class="bg-slate-800 text-white border border-slate-700 rounded px-4 py-2 text-sm focus:outline-none focus:border-blue-500 transition">
<span asp-validation-for="email" class="text-danger"></span>
<button class="bg-blue-600 text-white font-semibold py-2 rounded hover:bg-blue-700 transition text-sm" type="submit">Subscribe</button>
</form>