authorized.html 1.6 KB

1234567891011121314151617181920212223242526272829303132333435
  1. <!DOCTYPE html>
  2. <html lang="en" xmlns="http://www.w3.org/1999/xhtml" xmlns:th="https://www.thymeleaf.org">
  3. <head>
  4. <meta charset="utf-8">
  5. <meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
  6. <title>Device Grant Example</title>
  7. <link rel="stylesheet" href="/webjars/bootstrap/css/bootstrap.css" th:href="@{/webjars/bootstrap/css/bootstrap.css}" />
  8. <link rel="stylesheet" href="/assets/css/style.css" th:href="@{/assets/css/style.css}" />
  9. </head>
  10. <body>
  11. <div class="jumbotron">
  12. <div class="container">
  13. <div class="row">
  14. <div class="col-md-8">
  15. <h2>Success!</h2>
  16. <p>This device has been activated.</p>
  17. </div>
  18. <div class="col-md-4">
  19. <img src="https://cdn.pixabay.com/photo/2017/07/03/15/20/technology-2468063_1280.png" class="img-responsive" alt="Devices">
  20. </div>
  21. <div class="col-md-12" th:if="${messages}">
  22. <h4>Messages:</h4>
  23. <table class="table table-condensed">
  24. <tbody>
  25. <tr class="row" th:each="message : ${messages}">
  26. <td th:text="${message}">message</td>
  27. </tr>
  28. </tbody>
  29. </table>
  30. </div>
  31. </div>
  32. </div>
  33. </div>
  34. </body>
  35. </html>