-
Notifications
You must be signed in to change notification settings - Fork 0
/
exo9.html
62 lines (53 loc) · 1.81 KB
/
exo9.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
<html>
<head>
<script>
function checkEmail(email) {
var re = /^[a-zA-Z0-9.!#$%&'*+/=?^_`{|}~-]+@[a-zA-Z0-9-]+(?:\.[a-zA-Z0-9-]+)*$/;
return re.test(email);
}
function confirmEmail() {
var email = document.getElementById("email").value;
if (checkEmail(email)) {
alert('Adresse e-mail valide');
} else {
alert('Adresse e-mail non valide');
}
return false;
}
function checkTel(tel) {
var re = /\d{2}.?\d{2}.?\d{2}.?\d{2}.?\d{2}/g;
return re.test(tel);
}
function confirmTel() {
var tel = document.getElementById("tel").value;
if (checkTel(tel)) {
alert('Numéro de téléphone valide');
} else {
alert('Numéro de téléphone non valide');
}
return false;
}
function confirmForm() {
if (document.getElementById("login").value == "login" && document.getElementById("password").value == "password") {
alert('Identifiant reconnu');
} else {
alert('Identifiant non reconnu');
}
return false;
}
</script>
</head>
<body>
<p>Entrez une adresse email :</p>
<input id='email'>
<button type='submit' onclick="confirmEmail()">Valider</button>
<p>Entrez numéro de téléphone :</p>
<input id='tel'>
<button type='submit' onclick="confirmTel()">Valider</button>
<p>Entrez un login:</p>
<input type="text" id='login'>
<p>Entrez un password:</p>
<input type="password" id='password'>
<button type='submit' onclick="confirmForm()">Valider</button>
</body>
</html>