Blame view

PFE06/src/main/resources/templates/home.html 9.76 KB
66a8b43c   Antoine Duquenoy   Intégration du fr...
1
2
3
  <!DOCTYPE html>

  <html xmlns:th="http://www.thymeleaf.org">

  <html lang="en">

66a8b43c   Antoine Duquenoy   Intégration du fr...
4
5
6
7
    <head>

  

      <meta charset="utf-8">

      <meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">

66a8b43c   Antoine Duquenoy   Intégration du fr...
8
      <link rel="stylesheet" href="https://stackpath.bootstrapcdn.com/bootstrap/4.1.3/css/bootstrap.min.css" integrity="sha384-MCw98/SFnGE8fJT3GXwEOngsV7Zt27NXFoaoApmYm81iuXoPkFOJwJ8ERdknLPMO" crossorigin="anonymous">

115e3f68   sfeutrie   amélioration du f...
9
10
      <link rel="stylesheet" href="https://use.fontawesome.com/releases/v5.3.1/css/all.css" integrity="sha384-mzrmE5qonljUremFsqc01SB46JvROS7bZs3IO2EmfFsd15uHvIt+Y8vEf7N7fWAU" crossorigin="anonymous">

  

66a8b43c   Antoine Duquenoy   Intégration du fr...
11
12
      <link rel="stylesheet" href="https://cdn.datatables.net/1.10.19/css/dataTables.bootstrap4.min.css">

      <link rel="stylesheet" href="https://cdn.datatables.net/select/1.2.7/css/select.dataTables.min.css">

e23a6c00   Antoine Duquenoy   UI : modification...
13
      <link rem="stylesheet" href="https://cdn.datatables.net/responsive/2.2.3/css/responsive.dataTables.min.css">

66a8b43c   Antoine Duquenoy   Intégration du fr...
14
      <link rel="stylesheet" th:href="@{/css/home.css}">

66a8b43c   Antoine Duquenoy   Intégration du fr...
15
16
      <title>Accueil</title>

    </head>

66a8b43c   Antoine Duquenoy   Intégration du fr...
17
  

115e3f68   sfeutrie   amélioration du f...
18
    <body>

66a8b43c   Antoine Duquenoy   Intégration du fr...
19
      <div id="app">

115e3f68   sfeutrie   amélioration du f...
20
          <nav class="navbar navbar-expand-lg navbar-dark bg-dark">

e23a6c00   Antoine Duquenoy   UI : modification...
21
              <span class="navbar-brand"> ID : <span th:text="${customerName}" th:remove="tag">Documentations</span></span>

115e3f68   sfeutrie   amélioration du f...
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
              <button class="navbar-toggler" type="button" data-toggle="collapse" data-target="#navbarNavAltMarkup" aria-controls="navbarNavAltMarkup" aria-expanded="false" aria-label="Toggle navigation">

                  <span class="navbar-toggler-icon"></span>

              </button>

              <div class="collapse navbar-collapse" id="navbarNavAltMarkup">

                  <div class="navbar-nav">

                      <a class="nav-item nav-link active" th:href="@{/home}">Gestion des noeuds <span class="sr-only">(current)</span></a>

                      <a class="nav-item nav-link" th:href="@{/logout}">Déconnexion</a>

                      <li class="nav-item dropdown">

                          <a class="nav-link dropdown-toggle" href="#" id="navbarDropdownMenuLink" role="button" data-toggle="dropdown" aria-haspopup="true" aria-expanded="false"> Options</a>

                          <div class="dropdown-menu" aria-labelledby="navbarDropdownMenuLink">

                              <div th:switch="${customerRole}">

                                  <div th:case="'ADMIN'">

                                      <a class="dropdown-item" th:href="@{/registration}">Enregistrer des utilisateurs</a>

                                      <a class="dropdown-item" th:href="@{/all}">Listes des utilisateurs</a>

                                  </div>

                                  <div th:case="'USER'"></div>

                              </div>

                              <a class="dropdown-item" href="#">A ajouter...</a>

                          </div>

                      </li>

                      <a class="nav-item nav-link disabled" href="#">Documentations</a>

                  </div>

              </div>

          </nav>

66a8b43c   Antoine Duquenoy   Intégration du fr...
46
47
  

        <div class="container" style="padding-bottom: 50px;">

66a8b43c   Antoine Duquenoy   Intégration du fr...
48
          <h1 style="margin-bottom:50px; margin-top:50px; border-bottom:1px solid #CCC; padding-bottom:20px;">Choix des noeuds</h1>

66a8b43c   Antoine Duquenoy   Intégration du fr...
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
          <table id="nodes-table" class="table table-striped table-bordered dt-responsive nowrap">

                  <thead>

                      <tr>

                          <th>Nom</th>

                          <th>IP</th>

                          <th>Architecture</th>

                      </tr>

                  </thead>

                  <tbody>

                      <tr>

                          <td>Nixon</td>

                          <td>System Architect</td>

                          <td>Edinburgh</td>

                      </tr>

                      <tr>

                          <td>Winters</td>

                          <td>Accountant</td>

                          <td>Tokyo</td>

                      </tr>

                      <tr>

                          <td>Cox</td>

                          <td>Junior Technical Author</td>

                          <td>San Francisco</td>

                      </tr>

                      <tr>

                          <td>Kelly</td>

                          <td>Senior Javascript Developer</td>

                          <td>Edinburgh</td>

                      </tr>

                      <tr>

                          <td>Satou</td>

                          <td>Accountant</td>

                          <td>Tokyo</td>

                      </tr>

                      <tr>

                          <td>Williamson</td>

                          <td>Integration Specialist</td>

                          <td>New York</td>

                      </tr>

                      <tr>

                          <td>Chandler</td>

                          <td>Sales Assistant</td>

                          <td>San Francisco</td>

                      </tr>

                      <tr>

                          <td>Davidson</td>

                          <td>Integration Specialist</td>

                          <td>Tokyo</td>

                      </tr>

                      <tr>

                          <td>Hurst</td>

                          <td>Javascript Developer</td>

                          <td>San Francisco</td>

                      </tr>

                      <tr>

                          <td>Frost</td>

                          <td>Software Engineer</td>

                          <td>Edinburgh</td>

                      </tr>

                      <tr>

                          <td>Gaines</td>

                          <td>Office Manager</td>

                          <td>London</td>

                      </tr>

                      <tr>

                          <td>Flynn</td>

                          <td>Support Lead</td>

                          <td>Edinburgh</td>

                      </tr>

                      <tr>

                          <td>Marshall</td>

                          <td>Regional Director</td>

                          <td>San Francisco</td>

                      </tr>

                      <tr>

                          <td>Kennedy</td>

                          <td>Senior Marketing Designer</td>

                          <td>London</td>

                      </tr>

                      <tr>

                          <td>Fitzpatrick</td>

                          <td>Regional Director</td>

                          <td>London</td>

                      </tr>

                      <tr>

                          <td>Silva</td>

                          <td>Marketing Designer</td>

                          <td>London</td>

                      </tr>

                      <tr>

                          <td>Byrd</td>

                          <td>Chief Financial Officer (CFO)</td>

                          <td>New York</td>

                      </tr>

                      <tr>

                          <td>Little</td>

                          <td>Systems Administrator</td>

                          <td>New York</td>

                      </tr>

                      <tr>

                          <td>Greer</td>

                          <td>Software Engineer</td>

                          <td>London</td>

                      </tr>

66a8b43c   Antoine Duquenoy   Intégration du fr...
153
154
                  </tbody>

              </table>

66a8b43c   Antoine Duquenoy   Intégration du fr...
155
              <h1 style="margin-bottom:50px; margin-top:50px; border-bottom:1px solid #CCC; padding-bottom:20px;">Uploader un fichier</h1>

66a8b43c   Antoine Duquenoy   Intégration du fr...
156
              <div class="panel panel-default">

66a8b43c   Antoine Duquenoy   Intégration du fr...
157
                  <h4>Choix du fichier</h4>

66a8b43c   Antoine Duquenoy   Intégration du fr...
158
159
160
161
                  <input id="filesExplorer" type="file" style="display:none"></input>

                  <div class="upload-drop-zone" id="drop-zone">

                    Clic ou dépose un fichier ici

                  </div>

66a8b43c   Antoine Duquenoy   Intégration du fr...
162
163
164
                  <div class="progress">

                    <div id="file-progress" class="progress-bar" role="progressbar" style="width: 75%; display:none">25%</div>

                  </div>

66a8b43c   Antoine Duquenoy   Intégration du fr...
165
                </div>

66a8b43c   Antoine Duquenoy   Intégration du fr...
166
                <button id="sendButton" type="button" class="btn btn-secondary btn-lg btn-block"style="margin-top:50px;">Envoyer</button>

66a8b43c   Antoine Duquenoy   Intégration du fr...
167
              </div>

66a8b43c   Antoine Duquenoy   Intégration du fr...
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
        </div>

  

        <div class="modal fade" id="warningFilesNumber" tabindex="-1" role="dialog" aria-labelledby="exampleModalCenterTitle" aria-hidden="true">

          <div class="modal-dialog modal-dialog-centered" role="document">

            <div class="modal-content">

              <div class="modal-header">

                <h5 class="modal-title" id="modal-title">Attention</h5>

                <button type="button" class="close" data-dismiss="modal" aria-label="Close">

                  <span aria-hidden="true">&times;</span>

                </button>

              </div>

              <div id="modal-content" class="modal-body">

                Un seul fichier peut être envoyé !

              </div>

              <div class="modal-footer">

                <button id="modal-button" type="button" class="btn btn-secondary" data-dismiss="modal">Fermer</button>

              </div>

            </div>

          </div>

        </div>

  

      </div>

66a8b43c   Antoine Duquenoy   Intégration du fr...
190
191
192
193
194
195
      <script src="https://code.jquery.com/jquery-3.3.1.slim.min.js" integrity="sha384-q8i/X+965DzO0rT7abK41JStQIAqVgRVzpbzo5smXKp4YfRvH+8abtTE1Pi6jizo" crossorigin="anonymous"></script>

      <script src="https://cdn.jsdelivr.net/npm/vue@2.5.16/dist/vue.js"></script>

      <script src="https://stackpath.bootstrapcdn.com/bootstrap/4.1.3/js/bootstrap.min.js" integrity="sha384-ChfqqxuZUCnJSK3+MXmPNIyE6ZbWh2IMqE241rYiqJxyMiZ6OW/JmZQ5stwEULTy" crossorigin="anonymous"></script>

      <script src="https://cdn.datatables.net/1.10.19/js/jquery.dataTables.min.js" charset="utf-8"></script>

      <script src="https://cdn.datatables.net/select/1.2.7/js/dataTables.select.min.js" charset="utf-8"></script>

      <script src="https://cdn.datatables.net/1.10.19/js/dataTables.bootstrap4.min.js" charset="utf-8"></script>

e23a6c00   Antoine Duquenoy   UI : modification...
196
      <script src="https://cdn.datatables.net/responsive/2.2.3/js/dataTables.responsive.min.js" charset="utf-8"></script>

66a8b43c   Antoine Duquenoy   Intégration du fr...
197
198
199
      <script th:src="@{/js/home.js}"></script>

    </body>

  </html>