-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
70 lines (68 loc) · 2.08 KB
/
index.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
<!DOCTYPE html>
<html lang="it">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Accesso Wi-Fi</title>
<style>
body {
display: flex;
flex-direction: column;
justify-content: center;
align-items: center;
height: 100vh;
margin: 0;
font-family: Helvetica, Arial, sans-serif;
text-align: center;
background-color: #f9f9f9;
}
button {
padding: 10px 20px;
font-size: 16px;
margin-top: 20px;
cursor: pointer;
background-color: #007bff;
color: white;
border: none;
border-radius: 5px;
box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
}
button:hover {
background-color: #0056b3;
}
.instructions {
margin-top: 30px;
font-size: 16px;
color: #555;
line-height: 1.6;
}
</style>
</head>
<body>
<h1>Accesso Wi-Fi</h1>
<button id="copyButton">Copia Password</button>
<div class="instructions">
<p>1. Premi il pulsante <strong>"Copia Password"</strong>.</p>
<p>2. Vai su <strong>Impostazioni</strong> > <strong>Wi-Fi</strong> sul tuo dispositivo.</p>
<p>3. Cerca la rete <strong>"Andromeda OSPITI ;-)"</strong> nell'elenco.</p>
<p>4. Incolla la password copiata per connetterti.</p>
<p>5. Goditi la conessione fino a 250 Mbps! 🏎️ </p>
</div>
<script>
// Definizione della password Wi-Fi
const password = "brU-e3o!1#H*-oH4zA?u&iqA21?3EnADrU8Uk5wrLS3d*wrU454!P4-#@R$P#eF";
// Aggiungi un evento click al pulsante
document.getElementById('copyButton').addEventListener('click', () => {
// Usa l'API Clipboard per copiare la password
navigator.clipboard.writeText(password).then(() => {
// Conferma che la password è stata copiata
alert("Password copiata con successo!");
}).catch(err => {
// Gestione degli errori
console.error("Errore durante la copia della password: ", err);
alert("Impossibile copiare la password. Copiala manualmente:\n" + password);
});
});
</script>
</body>
</html>