-
Notifications
You must be signed in to change notification settings - Fork 0
/
connexion.html
226 lines (202 loc) · 6.89 KB
/
connexion.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
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
<!DOCTYPE html>
<html>
<head>
<title>Anglais Facile - Connexion</title>
<style>
body {
display: flex;
justify-content: center;
align-items: center;
height: 100vh;
margin: 0;
background-color: #f4f4f4;
font-family: Arial, sans-serif;
}
.navbar {
background-color: #333;
overflow: hidden;
position: fixed;
top: 0;
left: 0;
right: 0;
}
.navbar a {
float: left;
display: block;
color: white;
text-align: center;
padding: 14px 16px;
text-decoration: none;
font-size: 18px;
}
.navbar a.active {
background-color: #007bff;
color: white;
}
.navbar a:hover {
background-color: #ddd;
color: black;
}
#word-container {
text-align: center;
background-color: #fff;
padding: 30px;
border-radius: 12px;
box-shadow: 0 0 15px rgba(0, 0, 0, 0.2);
margin-top: 60px; /* Pour éviter que le contenu soit masqué par la barre de navigation */
}
body {
display: flex;
justify-content: center;
align-items: center;
height: 100vh;
margin: 0;
background-color: #f4f4f4;
font-family: Arial, sans-serif;
}
#word-container {
text-align: center;
background-color: #fff;
padding: 30px;
border-radius: 12px;
box-shadow: 0 0 15px rgba(0, 0, 0, 0.2);
}
h1 {
color: #333;
font-size: 24px;
}
p {
color: #666;
font-size: 18px;
}
#translation {
width: 80%; /* Ajuster la largeur comme souhaité */
padding: 15px;
margin-top: 20px;
border: 2px solid #ccc;
border-radius: 6px;
outline: none; /* Supprimer le contour par défaut de la case */
font-size: 20px;
}
#check {
background-color: #007bff;
color: #fff;
border: none;
padding: 15px 30px;
margin-top: 20px;
border-radius: 6px;
cursor: pointer;
font-size: 20px;
}
#check:hover {
background-color: #0056b3;
}
#result {
font-weight: bold;
margin-top: 20px;
font-size: 24px;
}
/* Style de la barre de navigation */
.navbar {
background-color: #333; /* Couleur de fond de la barre de navigation */
overflow: hidden;
}
/* Style des liens de la barre de navigation */
.navbar a {
float: left;
display: block;
color: white;
text-align: center;
padding: 14px 16px;
text-decoration: none;
font-size: 18px;
}
/* Style des liens actifs de la barre de navigation */
.navbar a.active {
background-color: #007bff; /* Couleur de fond de l'onglet actif */
color: white;
}
/* Style des liens de la barre de navigation au survol */
.navbar a:hover {
background-color: #ddd; /* Couleur de fond au survol */
color: black;
}
</style>
</head>
<body>
<div id="word-container">
<h1>Connexion</h1>
<form action="process_connexion.php" method="post">
<input type="text" name="username" placeholder="Nom d'utilisateur" required>
<input type="password" name="password" placeholder="Mot de passe" required>
<button id="check" type="submit">Se connecter</button>
</form>
<p id="result"></p>
<div class="navbar">
<a href="index.html" class="active">Accueil</a>
<a href="#">Mes Statistiques</a>
</div>
</div>
<script>
// Liste de mots en anglais et leurs traductions en français
const words = {
"apple": "pomme",
"banana": "banane",
"car": "voiture",
"coffin": "cercueil",
"grave": "tombe",
"bury": "enterrer",
"delighted": "ravie",
"down": "vers le bas",
"freeze to death": "mourir de froid",
"starve to death": "mourir de faim",
"dejected": "abattue",
"close up": "gros plan",
"at the top": "en haut",
"at the bottom": "en bas",
"on the right": "a droite",
"on the left": "a gauche",
"in the foreground": "au premier plan",
"in the background": "a l'arrière plan",
"over the years": "au cours des années",
"from 1939 to 1945": "de 1939 à 1945",
"widespread": "solide",
"unsolved": "non résolu",
"significant": "réel",
"ask": "demander",
};
const wordElement = document.getElementById("word");
const translationInput = document.getElementById("translation");
const checkButton = document.getElementById("check");
const resultElement = document.getElementById("result");
function getRandomWord() {
const randomIndex = Math.floor(Math.random() * Object.keys(words).length);
return Object.keys(words)[randomIndex];
}
function checkTranslation() {
const currentWord = wordElement.textContent;
const userTranslation = translationInput.value.trim().toLowerCase();
const actualTranslation = words[currentWord];
if (userTranslation === actualTranslation) {
resultElement.textContent = "Correct!";
} else {
resultElement.textContent = "Faux. La bonne réponse est " + actualTranslation;
}
setTimeout(() => {
const newWord = getRandomWord();
wordElement.textContent = newWord;
translationInput.value = "";
resultElement.textContent = "";
}, 2000);
}
checkButton.addEventListener("click", checkTranslation);
const initialWord = getRandomWord();
wordElement.textContent = initialWord;
translationInput.addEventListener("keydown", function (event) {
if (event.key === "Enter") {
checkTranslation();
}
});
</script>
</body>
</html>