2023-12-18 10:46:41 +00:00
|
|
|
<!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">
|
2023-12-18 11:56:51 +00:00
|
|
|
<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>
|
2023-12-18 10:46:41 +00:00
|
|
|
<input type="submit">
|
|
|
|
</form>
|
|
|
|
</body>
|
|
|
|
</main>
|
|
|
|
|
|
|
|
</html>
|