31 lines
987 B
HTML
31 lines
987 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@1.0.0-beta.8/dist/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>
|