mirror of
https://codeberg.org/mycelium/emojiquest.git
synced 2024-11-18 23:09:14 +00:00
44 lines
993 B
HTML
44 lines
993 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;
|
|
}
|
|
|
|
nav>a {
|
|
margin: 1ch;
|
|
}
|
|
</style>
|
|
</head>
|
|
|
|
<body>
|
|
<nav>
|
|
<a href="/">home</a>
|
|
<a href="/requested">requested</a>
|
|
</nav>
|
|
<main>
|
|
{{- if .Success }}
|
|
<h1>emoji requested successfully</h1>
|
|
{{- end }}
|
|
<h1>Request An Emoji</h1>
|
|
<form method="POST">
|
|
<div>
|
|
<label for="label">Emoji label</label>
|
|
<input type="text" id="label" name="label" placeholder="blobcatNotLikeThis">
|
|
</div>
|
|
<div>
|
|
<label for="url">Emoji URL</label>
|
|
<input type="text" id="url" name="url" placeholder="https://...">
|
|
</div>
|
|
<input type="submit">
|
|
</form>
|
|
</main>
|
|
</body>
|
|
|
|
</html> |