plaster/public/index.html
2024-12-18 16:21:07 -05:00

31 lines
743 B
HTML

<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>plaster</title>
<style>
body {
font-family: Arial, sans-serif;
margin: 20px;
text-align:center;
}
#output {
white-space: pre-wrap;
background: #f4f4f4;
padding: 10px;
border: 1px solid #ddd;
border-radius: 5px;
}
</style>
</head>
<body>
<h1>plaster</h1>
<input type="text" id="pasteUrl" placeholder="Enter Pastebin URL">
<button id="fetchBtn">fetch!</button>
<div id="output"></div>
<script src="client.js"></script>
</body>
</html>