You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
35 lines
1.1 KiB
35 lines
1.1 KiB
<!DOCTYPE html>
|
|
<html lang="fr">
|
|
<head>
|
|
<meta charset="utf-8" />
|
|
<title>Tests Icones</title>
|
|
<link rel="stylesheet" href="icon-style.css" />
|
|
<link rel="stylesheet" href="style.css" />
|
|
<script type="text/javascript" src="scripts.js" async></script>
|
|
</head>
|
|
<body>
|
|
<!-- références :
|
|
icones : https://icomoon.io/app/#/select
|
|
pattern : https://developer.mozilla.org/en-US/docs/Web/HTML/Attributes/pattern
|
|
regexp : https://developer.mozilla.org/fr/docs/Web/JavaScript/Reference/Global_Objects/RegExp
|
|
-->
|
|
<form id="login-form" class="l-form" method="get" action="">
|
|
<span title="Afficher le mot de passe" class="mdp-on-off">
|
|
<i class="icon-eye"></i>
|
|
<span>Afficher le mot de passe</span>
|
|
</span>
|
|
|
|
<input type="password"
|
|
required
|
|
minlength="8"
|
|
pattern=".*[0-9]+.*"
|
|
value=""
|
|
title="merci de saisir un mot de passe de
|
|
au moins 8 caractères
|
|
avec au moins un chiffre"
|
|
name="pwd"
|
|
id="pwd" />
|
|
<button type="submit">Se connecter</button>
|
|
</form>
|
|
</body>
|
|
</html> |