mirror of
https://github.com/gigirassy/plaster.git
synced 2024-12-23 18:39:07 +00:00
31 lines
743 B
HTML
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>
|