grabber/gbapp/templates/employee_form.html
2026-03-10 13:12:36 +01:00

27 lines
654 B
HTML

<!DOCTYPE html>
<html>
<head>
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/bulma@1.0.4/css/bulma.min.css">
</head>
<body>
<div class="container">
<div class="title pt-6">Employee form</div>
<form action="/employee/add" method="post">
<label> First name:</label><br>
<input class="input" type="text" name="first_name"><br>
<label> Family name:</label><br>
<input class ="input"type="text" name="family_name"><br>
<label> Badge number:</label><br>
<input class ="input"type="text" name="badge_number"><br> <br>
<input type="submit" value="Submit">
</form>
</div>
</body>
</html>