You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

26 lines
609 B

<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>Echo - ピケ.コム</title>
<meta name="description" lang="en" content="<?php echo $_GET['s']; ?>">
<style>
pre {
background-color: #f8f8f8;
border-radius: 0.5rem;
padding: 1rem;
}
</style>
</head>
<body>
<pre id="content"><?php echo $_GET['s']; ?></pre>
<input type="button" onclick="copy()" value="Copy">
<script>
function copy() {
navigator.clipboard.writeText(document.getElementById("content").innerText);
}
</script>
</body>
</html>