This repository has been archived by the owner on Mar 29, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
info.html
108 lines (98 loc) · 5.1 KB
/
info.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
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
<!DOCTYPE html>
<html lang="fr">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<title>Flace | Infos</title>
<link rel="stylesheet" href="./style.css">
<link rel="stylesheet" id="themestyle" href="themes/auto.css">
<link rel="icon" type="image/x-icon" href="./img/faviconcolor-fixed.png">
<link href='https://unpkg.com/boxicons@2.1.1/css/boxicons.min.css' rel='stylesheet'>
<meta name="msapplication-TileColor" content="#FFFFFF">
<meta name="description" content="Flace est un site d’apprentissage fondé sur l’utilisation de flashcards.">
<link href="https://unpkg.com/aos@2.3.1/dist/aos.css" rel="stylesheet">
<script src="https://unpkg.com/aos@2.3.1/dist/aos.js"></script>
</head>
<body>
<!-- navbar -->
<div class="navbar">
<img onclick="location.href = './'" src="img/faviconcolor-fixed.png" alt="flacelogo">
<i onclick="location.href = './'" class='bx bx-home '></i>
<i onclick="location.href = 'matiere.html'" class="bx bx-card"></i>
<i onclick="location.href = 'st.html'" class='bx bx-slider-alt '></i>
<i onclick="location.href = 'info.html'" class=' bx bx-info-circle hover'></i>
</div>
<div class="matiere">
<i onclick="history.back()" class="bx bx-left-arrow-alt"></i>
<p>Info</p>
<i onclick="location.reload()" class="bx bx-redo"></i>
</div>
<div class="home">
<div class="infologo" data-aos="zoom-in">
<img class="infoimg" src="img/faviconcolor-fixed.png" alt="flacelogo">
<div class="textinfo"><span class="gradient">Flace</span></div>
</div>
<div data-aos="zoom-in" class="info">Flace est un site d’apprentissage fondé sur l’utilisation de flashcards. <no>Le site s’adapte à ses utilisateurs via un système de piles</no> (pas encore) inspiré de la méthode <a target="_blank" href="https://fr.wikipedia.org/wiki/Système_Leitner">Leitner</a>, permettant un apprentissage durable. Flace, Long-term learning.</div>
<div data-aos="zoom-in" class="info"><strong>Attention:</strong> Flace ne remplace en aucun cas votre cahier de cours !</div>
<div data-aos="zoom-in" class="info">Flace a été développé en HTML, CSS et JS. Le site est disponible hors-ligne et se met à jour automatiquement quand vous vous reconnectez.</div>
<div data-aos="zoom-in" class="info">Idée de A. 19<br>Developpé par A. H.<br>Contributeurs flashcards: L. D., E. C. et T. H-L.</div>
<div data-aos="zoom-in" class="info">Google Material Design pour les images des matières</div>
<div data-aos="zoom-in" class="version">Rv24.0222</div>
<div data-aos="zoom-in" class="info" onclick="document.getElementById('contact').classList.toggle('active')"><strong>Effectuer une suggestion ou report un problème</strong></div>
<div class="Contact" id="contact">
<textarea maxlength ="2000" id="InputField" placeholder="Votre message ici"></textarea>
<button onclick="send()" id="SendMessage">Envoyer votre message</button>
<h3 id="MessageSent">Votre message a été envoyé!</h3>
<h3 id="MessageFailed">Echec de l'envoi!</h3>
</div>
<!-- taches d'encre stylé -->
<div class="shapes">
<div class="shape color1"></div>
<div class="shape color2"></div>
<div class="shape color3"></div>
</div>
</div>
<script>
// script pour formulaire par discord
whurl = "https://discord.com/api/webhooks/1178779338292867114/7i7717028JqfI_0iYegSbQEWfaUF9D-th-tmfAnKJu65nK3XasvcJqYU34YWZauG-nos"
var str= "";
var name= "";
function f1(){
str = document.getElementById("InputField").value;
console.log(document.getElementById("InputField").value)
}
function send(){
f1();
const msg = {
"content": str,
"username": localStorage.getItem('username')
};
console.log(msg)
if(str == ""){
document.getElementById("Message1").style.opacity = 1;
setTimeout(function(){
document.getElementById("Message1").style.opacity = 0;
}, 4000)
console.log("ERROR")
return;
}
try{
fetch(whurl + "?wait=true", {"method":"POST", "headers": {"content-type": "application/json"}, "body": JSON.stringify(msg)});
document.getElementById("InputField").value = "";
document.getElementById("MessageSent").style.opacity = 1;
setTimeout(function(){
document.getElementById("MessageSent").style.opacity = 0;
}, 4000)
} catch(e){
document.getElementById("MessageFailed").style.opacity = 1;
setTimeout(function(){
document.getElementById("MessageFailed").style.opacity = 0;
}, 4000)
}
}
</script>
<script>AOS.init();document.getElementById("themestyle").setAttribute("href", `themes/${localStorage.getItem("theme")}.css`);</script>
<script src="js/main.js"></script>
</body>
</html>