diff options
Diffstat (limited to 'templates/directory.html')
-rw-r--r-- | templates/directory.html | 33 |
1 files changed, 33 insertions, 0 deletions
diff --git a/templates/directory.html b/templates/directory.html new file mode 100644 index 0000000..bdc587f --- /dev/null +++ b/templates/directory.html @@ -0,0 +1,33 @@ +{{define "title"}}Directory |{{end}} + +{{define "body"}} +<div class="d-flex"> + <h4>Directory</h4> + <a class="ml-auto btn btn-info" href="/">Menu principal</a> +</div> + + + +<div class="d-flex"> + <div class="d-flex mx-auto"> + <p class="">Name:</p> + <form class="px-2" style="width: fit-content;"> + <input id="search" type="text" onkeyup="searchDirectory()" size="20"> + </form> + </div> +</div> + +<table class="table mt-4"> + <thead> + <th scope="col">Identifiant</th> + <th scope="col">Nom complet</th> + <th scope="col">Email</th> + </thead> + <tbody id="users"> + + + </tbody> + </table> + <script src="/static/javascript/search.js"></script> + +{{end}}
\ No newline at end of file |