styles, form, backend partial
All checks were successful
Lint / Lint (push) Successful in 1m8s

This commit is contained in:
2024-10-18 13:12:19 +02:00
parent 0406e1daf4
commit 4db42044ce
11 changed files with 530 additions and 71 deletions

View File

@ -1,37 +1,3 @@
export default function Home() {
return (
<form
method="post"
action="https://listmonk.schulze.network/subscription/form"
className="listmonk-form"
>
<div>
<h3>Subscribe</h3>
<input type="hidden" name="nonce" />
<p>
<input type="email" name="email" required placeholder="E-post" />
</p>
<p>
<input type="text" name="name" placeholder="Namn (ej obligatorisk)" />
</p>
<p>
<input
id="c99ab"
type="checkbox"
name="l"
checked
value="c99ab65c-cd0a-4ccc-ba63-0c9f7de99ac3"
/>
<label htmlFor="c99ab">Produktnyheter</label>
<br />
<span>Produktnyheter för Schulze Network</span>
</p>
<p>
<input type="submit" value="Prenumerera" />
</p>
</div>
</form>
);
return "helloworld";
}