10 lines
798 B
Plaintext
10 lines
798 B
Plaintext
@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> |