liferaft/index.html

32 lines
987 B
HTML
Raw Normal View History

2024-02-04 21:35:25 +00:00
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
2024-02-04 21:36:59 +00:00
<title>This is your Life Raft</title>
2024-02-04 21:35:25 +00:00
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/picocss@1.0.0-beta.8/dist/pico.min.css">
</head>
<body>
2024-02-05 11:15:19 +00:00
<main class="container">
<header>
<h1>🛟 This is your Life Raft</h1>
</header>
2024-02-04 21:35:25 +00:00
2024-02-05 11:15:19 +00:00
<pre id="codeBlock">curl -O https://liferaft.altweb.me/rustdesk.sh && chmod +x rustdesk.sh && ./rustdesk.sh</pre>
<button onclick="copyCode()">Copy</button>
</main>
2024-02-04 21:35:25 +00:00
<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>