first commit
This commit is contained in:
17
templates/add_user.html
Normal file
17
templates/add_user.html
Normal file
@@ -0,0 +1,17 @@
|
||||
<!doctype html>
|
||||
<html lang="fr">
|
||||
<head>
|
||||
<meta charset="utf-8">
|
||||
<title>Add_user</title>
|
||||
<link rel="stylesheet" href="{{ url_for('static', filename='style.css') }}">
|
||||
</head>
|
||||
<body>
|
||||
<h1>Ajouter un utilisateur</h1>
|
||||
<form action="{{ url_for('result_add_user') }}" method="post">
|
||||
<label>Identifiant : <input name="Identifiant" required></label><br>
|
||||
<label>Mot_de_passe : <input name="Mot_de_passe" required></label><br>
|
||||
<button type="submit">Ajouter</button>
|
||||
</form>
|
||||
<p><a href="{{ url_for('index') }}">Retour</a></p>
|
||||
</body>
|
||||
</html>
|
||||
Reference in New Issue
Block a user