This repository has been archived on 2025-02-26. You can view files and clone it. You cannot open issues or pull requests or push a commit.
Files
tp_twigg/crud/vue/add.twig
2024-10-11 17:15:04 +02:00

28 lines
795 B
Twig

<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<link rel="stylesheet" href="style/style.css"/>
<title>Ajouter utilisateur</title>
</head>
<body>
<form method="post">
<label for="login">Utilisateur</label>
<input type="text" name="login" id="login">
<label for="password">Mot de passe</label>
<input type="text" name="password" id="password" />
<label for="firstname">Prénom</label>
<input type="text" name="firstname" id="firstname">
<label for="lastname">Nom de famille</label>
<input type="text" name="lastname" id="lastname" />
<label for="role">Role</label>
<input type="number" name="role" id="role">
<label for="description">Description</label>
<textarea name="description"></textarea>
<button>Enregistrer</button>
</form>
</body>
</html>