0
0
Fork 0
mirror of https://git.verdigado.com/NB-Public/simple-wkd.git synced 2024-12-06 14:52:41 +01:00
simple-wkd/src/pages/submit.astro
2023-04-16 00:59:08 +02:00

31 lines
765 B
Text

---
import Layout from "../layouts/Layout.astro";
import "../styles/global.css";
---
<Layout title="Submit a key">
<div class="flex flex-row items-center h-full font-mono px-8 py-4">
<div class="flex flex-col items-center w-full">
<form
action="{{%u}}api/submit"
method="post"
class="flex flex-col max-w-full"
>
<label for="key" class="font-bold text-xl"
>Paste your pgp keyblock here:</label
>
<textarea
name="key"
id="key-input"
cols="65"
rows="20"
class="round focus:rounded-lg mt-3 resize-none"
placeholder="-----BEGIN PGP PUBLIC KEY BLOCK-----"
required></textarea>
<button type="submit" class="button mt-6 self-end"
>Submit</button
>
</form>
</div>
</div>
</Layout>