gopaste/editor.html

33 lines
523 B
HTML
Raw Normal View History

2018-11-29 15:24:11 +00:00
<html>
<head>
<title>gopaste</title>
<style>
2018-11-29 15:46:01 +00:00
body {
font-size: 120%;
}
2018-11-29 15:24:11 +00:00
form {
margin: 0 auto;
max-width: 40em;
}
textarea {
width: 100%;
height: 50vh;
font-family: serif;
border: 0;
outline: none;
}
2018-11-29 15:46:01 +00:00
textarea, input {
font-size: 100%;
}
2018-11-29 15:24:11 +00:00
</style>
</head>
<body>
<h1>gopaste</h1>
2018-11-29 14:57:07 +00:00
2018-11-29 15:24:11 +00:00
<form action="/create" method="post">
<textarea name="stuff" placeholder="Paste something..." autofocus></textarea>
<input type="submit" value="Publish" />
</form>
</body>
</html>