54 lines
1.1 KiB
HTML
54 lines
1.1 KiB
HTML
<html>
|
|
<head>
|
|
<title>lispy pasty thingy</title>
|
|
<style>
|
|
html {
|
|
background-color: #4E5A52;
|
|
color: #FFFDD0;
|
|
}
|
|
body {
|
|
margin: 0;
|
|
padding: 5px;
|
|
}
|
|
code {
|
|
margin: 0;
|
|
font-family: monospace;
|
|
}
|
|
div {
|
|
border: 3px solid #FFFDD0;
|
|
padding: 0px;
|
|
border-radius: 5px;
|
|
width: 80%;
|
|
|
|
margin: auto;
|
|
}
|
|
/*
|
|
form {
|
|
border: 3px solid #FFFDD0;
|
|
padding: 2px;
|
|
margin-top: 10px;
|
|
border-radius: 5px;
|
|
width: 80%;
|
|
margin-left: auto;
|
|
margin-right: auto;
|
|
}*/
|
|
</style>
|
|
</head>
|
|
|
|
<body>
|
|
|
|
<div>
|
|
<p> This is a simple pastebin-like web app written in Common Lisp.
|
|
Simply type something into the box below, submit, and share the link
|
|
with your friends.
|
|
<br>
|
|
Pastes are anonymous, no authentication is needed.</p>
|
|
|
|
<form method="post" action="/new">
|
|
<textarea name="content" rows="7" cols="50"></textarea> <br />
|
|
<input type="submit" value="Submit">
|
|
</form>
|
|
</div>
|
|
</body>
|
|
</html>
|