add_user.html (1656B) download
1<!DOCTYPE html>
2<html lang="eng">
3 <head>
4 <title>Add user</title>
5 <!-- Bootstrap CSS -->
6 <link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/[email protected]/dist/css/bootstrap.min.css">
7 <link rel="stylesheet" type="text/css" href="/css/homepage.css">
8 </head>
9 <body>
10 <div class="container">
11 <h1>Add user</h1>
12
13 <form action="/user/add" method="post">
14 <div class="mb-3">
15 <label for="first_name" class="form-label"><b>Voornaam:</b></label>
16 <input type="text" class="form-control" name="first_name" id="first_name" placeholder="{{first_name}}">
17 </div>
18 <div class="mb-3">
19 <label for="achternaam" class="form-label"><b>Achternaam:</b></label>
20 <input type="text" class="form-control" name="last_name" id="achternaam" placeholder="{{last_name}}">
21 </div>
22 <div class="mb-3">
23 <label for="email" class="form-label"><b>Email:</b></label>
24 <input type="text" class="form-control" name="email" id="email" placeholder="{{email}}">
25 </div>
26 <div class="mb-3">
27 <label for="password" class="form-label"><b>Wachtwoord:</b></label>
28 <input type="password" class="form-control" name="password" id="password" placeholder="{{password}}">
29 </div>
30 <button type="submit" class="btn btn-primary" name="submit">Add user</button>
31 </form>
32 {{msg}}
33 </div>
34 </body>
35</html>