aboutsummaryrefslogtreecommitdiff
path: root/templates/directory.html
blob: bdc587fe7e78f1c39fc18106ac4109022503aa5e (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
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}}