0
0
Fork 0
mirror of https://git.verdigado.com/NB-Public/simple-wkd.git synced 2024-12-06 14:52:41 +01:00

Fix webpage not being rendered

This commit is contained in:
Delta1925 2023-04-16 01:07:43 +02:00
parent a91b213dbf
commit 2a22617752
No known key found for this signature in database
GPG key ID: 1C21ACE44193CB25
7 changed files with 59 additions and 14 deletions

View file

@ -9,7 +9,7 @@
<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/delete" method="get" class="flex flex-col max-w-full">
<form action="{{%u}}api/delete" method="get" class="flex flex-col max-w-full">
<label for="email" class="font-bold text-xl mt-3">Request key deletion:</label>
<input type="email" name="email" id="email-input" placeholder="e-mail" size="65" class="round focus:rounded-lg mt-3" required="">
<button type="submit" class="button mt-4 self-end">Delete</button>

View file

@ -9,7 +9,7 @@
<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">
<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>