1234567891011121314151617181920212223242526272829303132333435 |
- <!DOCTYPE html>
- <html lang="en" xmlns="http://www.w3.org/1999/xhtml" xmlns:th="https://www.thymeleaf.org">
- <head>
- <meta charset="utf-8">
- <meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
- <title>Device Grant Example</title>
- <link rel="stylesheet" href="/webjars/bootstrap/css/bootstrap.css" th:href="@{/webjars/bootstrap/css/bootstrap.css}" />
- <link rel="stylesheet" href="/assets/css/style.css" th:href="@{/assets/css/style.css}" />
- </head>
- <body>
- <div class="jumbotron">
- <div class="container">
- <div class="row">
- <div class="col-md-8">
- <h2>Success!</h2>
- <p>This device has been activated.</p>
- </div>
- <div class="col-md-4">
- <img src="https://cdn.pixabay.com/photo/2017/07/03/15/20/technology-2468063_1280.png" class="img-responsive" alt="Devices">
- </div>
- <div class="col-md-12" th:if="${messages}">
- <h4>Messages:</h4>
- <table class="table table-condensed">
- <tbody>
- <tr class="row" th:each="message : ${messages}">
- <td th:text="${message}">message</td>
- </tr>
- </tbody>
- </table>
- </div>
- </div>
- </div>
- </div>
- </body>
- </html>
|