-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdemo-code-form-help.html
More file actions
57 lines (55 loc) · 2.78 KB
/
demo-code-form-help.html
File metadata and controls
57 lines (55 loc) · 2.78 KB
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
<!doctype html>
<html lang="fr">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Exemples de codes : aide de saisie - Démonstrations en accessibilité - Stratis</title>
<link rel="icon" type="image/gif" href="favicon.ico"/>
<!-- Compressed CSS -->
<link rel="stylesheet" href="css/github.css">
<link rel="stylesheet" href="css/screen.css">
<!-- highlight -->
<link rel="stylesheet" href="//cdnjs.cloudflare.com/ajax/libs/highlight.js/11.2.0/styles/default.min.css">
<script src="//cdnjs.cloudflare.com/ajax/libs/highlight.js/11.2.0/highlight.min.js"></script>
<script>hljs.highlightAll();</script>
</head>
<body>
<header role="banner">
<h1 id="heading"><a href="#heading">§</a> Exemples de codes : aide de saisie</h1>
</header>
<div class="wrap">
<pre><code><div class="field-wrap">
<label for="edit-email">Courriel (prenom.nom@domain.com)</label>
<input type="text" id="edit-email" autocomplete="email">
</div>
<div class="field-wrap">
<label for="edit-pwd">Mot de passe</label>
<input type="text" id="edit-pwd" autocomplete="new-password" aria-describedby="pwd-aide">
<p id="pwd-aide">Le mot de passe doit contenir au moins 8 caractères, 1 majuscule, 1 minuscule, 1
chiffre et 1 caractère spécial.</p>
</div>
<div class="field-wrap">
<label for="edit-pwd2" id="edit-label-secu">Numéro de sécurité sociale</label>
<input type="text" id="edit-pwd2" aria-labelledby="edit-label-secu pwd-aide2">
<p id="pwd-aide2">13 chiffres</p>
</div></code></pre>
<div class="demo">
<div class="field-wrap">
<label for="edit-email">Courriel (prenom.nom@domain.com)</label>
<input type="text" id="edit-email" autocomplete="email">
</div>
<div class="field-wrap">
<label for="edit-pwd">Mot de passe</label>
<input type="text" id="edit-pwd" autocomplete="new-password" aria-describedby="pwd-aide">
<p id="pwd-aide">Le mot de passe doit contenir au moins 8 caractères, 1 majuscule, 1 minuscule, 1
chiffre et 1 caractère spécial.</p>
</div>
<div class="field-wrap">
<label for="edit-pwd2" id="edit-label-secu">Numéro de sécurité sociale</label>
<input type="text" id="edit-pwd2" aria-labelledby="edit-label-secu pwd-aide2">
<p id="pwd-aide2">13 chiffres</p>
</div>
</div>
</div>
</body>
</html>