mirror of
https://codeberg.org/mycelium/emojiquest.git
synced 2024-11-17 14:39:14 +00:00
32 lines
680 B
HTML
32 lines
680 B
HTML
<!doctype html>
|
|
<html lang="en">
|
|
|
|
<head>
|
|
<meta charset="utf-8">
|
|
<title>Emoji Request</title>
|
|
<style>
|
|
main {
|
|
max-width: 70ch;
|
|
padding: 2rem;
|
|
margin: auto;
|
|
}
|
|
</style>
|
|
</head>
|
|
|
|
<body>
|
|
<main>
|
|
{{if .Success}}
|
|
<h1>emoji requested successfully</h1>
|
|
{{end}}
|
|
<h1>Request An Emoji</h1>
|
|
<form method="POST">
|
|
<span>
|
|
<label for="emojiLabel">Emoji label</label>
|
|
<input type="text" id="emojiLabel" name="label" placeholder="blobcatNotLikeThis">
|
|
</span>
|
|
<input type="submit">
|
|
</form>
|
|
</body>
|
|
</main>
|
|
|
|
</html> |