Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Problème de <label> #2

Open
vargenau opened this issue Feb 3, 2014 · 0 comments
Open

Problème de <label> #2

vargenau opened this issue Feb 3, 2014 · 0 comments

Comments

@vargenau
Copy link

vargenau commented Feb 3, 2014

Bonjour,

Avec le code ci-dessous, Opquast 0.10.0 me dit:
"Chaque champ de formulaire a-t-il une étiquette ?"
n'est pas vrai.

Pourtant j'ai bien des balises <label>

Merci de votre aide.

<!DOCTYPE html>

<head>
    <meta charset="UTF-8" />
    <title>Enregistrer un nouvel utilisateur</title>
</head>
<body>
<h1>Enregistrer un nouvel utilisateur</h1>
<form action="http://acmv.nmu.alcatel.fr/account/register.php" method="post">
<table>
<tr>
<td>
<label for="unix_name">
Nom du compte (ne pas utiliser de majuscules) : </label>
</td>
<td>
    <input id="unix_name" type="text" required="required" name="unix_name" value="" />
</td>
</tr>
<tr>
<td>
    <label for="password1">
        Mot de passe (6 caractères minimum) : </label>
</td>
<td>
    <input id="password1" type="password" required="required" name="password1" />
</td>
</tr>
<tr>
<td>
    <label for="password2">
        Mot de passe (confirmez) : </label>
</td>
<td>
    <input id="password2" type="password" required="required" name="password2" />
</td>
</tr>
</table>
</form>
</body>
</html>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

1 participant