emojiquest/templates/index.html

44 lines
993 B
HTML
Raw Normal View History

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;
}
2023-12-18 14:05:18 +00:00
nav>a {
margin: 1ch;
}
2023-12-18 10:46:41 +00:00
</style>
</head>
<body>
2023-12-18 14:05:18 +00:00
<nav>
<a href="/">home</a>
<a href="/requested">requested</a>
</nav>
2023-12-18 10:46:41 +00:00
<main>
2023-12-18 14:05:18 +00:00
{{- if .Success }}
2023-12-18 10:46:41 +00:00
<h1>emoji requested successfully</h1>
2023-12-18 14:05:18 +00:00
{{- end }}
2023-12-18 10:46:41 +00:00
<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>
2023-12-18 12:41:13 +00:00
</main>
2023-12-18 10:46:41 +00:00
</body>
</html>