liferaft/index.html
2024-02-05 11:16:47 +00:00

31 lines
981 B
HTML

<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>This is your Life Raft</title>
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/@picocss/pico@1/css/pico.min.css">
</head>
<body>
<main class="container">
<header>
<h1>🛟 This is your Life Raft</h1>
</header>
<pre id="codeBlock">curl -O https://liferaft.altweb.me/rustdesk.sh && chmod +x rustdesk.sh && ./rustdesk.sh</pre>
<button onclick="copyCode()">Copy</button>
</main>
<script>
function copyCode() {
const codeBlock = document.getElementById('codeBlock').innerText;
navigator.clipboard.writeText(codeBlock).then(() => {
alert('Code copied to clipboard!');
}, (err) => {
console.error('Error in copying text: ', err);
});
}
</script>
</body>
</html>