30 lines
955 B
HTML
30 lines
955 B
HTML
<!doctype html>
|
|
|
|
<html lang="en">
|
|
|
|
<head>
|
|
<meta charset="utf-8">
|
|
|
|
<title>The HTML5 Herald</title>
|
|
<meta name="description" content="The HTML5 Herald">
|
|
<meta name="author" content="SitePoint">
|
|
|
|
<link rel="stylesheet" href="css/styles.css?v=1.0">
|
|
|
|
</head>
|
|
|
|
<body>
|
|
<h1>Inscription</h1>
|
|
<label for="pseudo">Pseudo :</label>
|
|
<input type="text" id="pseudo" name="pseudo" size="10">
|
|
<label for="mdp">Mot de passe :</label>
|
|
<input type="password" id="mdp" name="mdp" size="10">
|
|
<label for="validation_mdp">Confirmation mot de passe :</label>
|
|
<input type="password" id="validation_mdp" name="validation_mdp" size="10">
|
|
<button id="valider" type="button"> Valider </button>
|
|
<script src={{url_for('static', filename='fonction_inscription.js')}}></script>
|
|
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.3.1/jquery.min.js"></script>
|
|
<input type=hidden id='reponse' value=''>
|
|
</body>
|
|
|
|
</html> |