emojiquest/templates/index.html
2023-12-18 12:56:51 +01:00

36 lines
838 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">
<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>
</body>
</main>
</html>