Initial commit with work so far.

This commit is contained in:
Emin Arslan
2025-03-29 21:59:47 +03:00
parent 747f1305ed
commit 85a16d2e0d
8 changed files with 350 additions and 0 deletions

52
root.html Normal file
View File

@ -0,0 +1,52 @@
<html>
<head>
<title>lispy pasty thingy</title>
<style>
html {
background-color: black;
color: #FFFDD0;
}
body {
margin: 0;
padding: 5px;
}
code {
margin: 0;
font-family: monospace;
}
div {
border: 3px solid #FFFDD0;
padding: 2px;
border-radius: 5px;
width: 80%;
height: 95%;
margin: auto;
}
main {
margin: auto;
width: 80%;
}
main a {
margin-left: 5%;
color: #FFFDD0;
text-decoration: none;
}
</style>
</head>
<body>
<div>
<h1> Lispy paste </h1>
<form method="post" action="/new">
<p> New Paste: </p> <br />
<textarea name="content" rows="4" cols="50">
</textarea> <br />
<input type="submit" value="Submit">
</form>
</div>
</body>
</html>