Changeset 60de3eb for src/main/resources
- Timestamp:
- 01/03/23 23:03:00 (23 months ago)
- Branches:
- main
- Children:
- 6832924
- Parents:
- feffc2f
- Location:
- src/main/resources/templates
- Files:
-
- 3 added
- 8 edited
Legend:
- Unmodified
- Added
- Removed
-
src/main/resources/templates/deliveryForPart.html
rfeffc2f r60de3eb 1 <!DOCTYPE html> 2 <html lang="en"> 3 <head> 4 <meta charset="UTF-8"> 5 <title>Податоци за достава</title> 6 </head> 7 <body> 1 <div> 8 2 <header> 9 3 <h1>Податоци за достава</h1> … … 33 27 </main> 34 28 35 </body> 36 </html> 29 </div> -
src/main/resources/templates/homepage.html
rfeffc2f r60de3eb 1 <html xmlns="http://www.w3.org/1999/xhtml" xmlns:th="http://www.thymeleaf.org" 2 lang="en"> 3 <head> 4 <meta charset="utf-8"/> 5 <title>Почетна</title> 6 </head> 7 <body> 1 <div> 8 2 <header> 9 3 <a th:href="${'/orders/4'}">Мои нарачки</a> … … 13 7 <main> 14 8 <h1>Сите производи</h1> 9 <form th:action="@{/filtered}"> 10 <label for="cartype"></label><select id="cartype" required name="cartype"> 11 <option th:each="car : ${cars}" 12 th:text="${car.getCartype()}" 13 th:value="${car.getCartype()}"> 14 </option> 15 </select> 16 <label for="category"></label><select id="category" required name="category"> 17 <option th:each="cat : ${categories}" 18 th:text="${cat.getCname()}" 19 th:value="${cat.getCname()}"> 20 </option> 21 </select> 22 <button type="submit">Филтрирај</button> 23 </form> 15 24 <table> 16 25 <thead> 17 26 <tr> 18 27 <th>Name</th> 19 <th>Description</th>20 28 <th>Manufacturer</th> 21 29 <th>Details</th> … … 25 33 <tr th:each="part : ${parts}"> 26 34 <td th:text="${part.getName()}"></td> 27 <td th:text="${part.getDescription()}"></td>28 35 <td th:text="${part.getManufacturer().getName()}"></td> 29 36 <td> … … 36 43 </table> 37 44 </main> 38 </body> 39 </html> 45 </div> -
src/main/resources/templates/login.html
rfeffc2f r60de3eb 1 <html xmlns="http://www.w3.org/1999/xhtml" xmlns:th="http://www.thymeleaf.org" lang="en"> 2 <head> 3 <title>Најава</title> 4 <!-- <link href="/main.css" rel="stylesheet"/>--> 5 <link rel="stylesheet" href="https://stackpath.bootstrapcdn.com/bootstrap/4.3.1/css/bootstrap.min.css" integrity="sha384-ggOyR0iXCbMQv3Xipma34MD+dH/1fQ784/j6cY/iJTQUOhcWr7x9JvoRxT2MZw1T" crossorigin="anonymous"/> 6 <script src="https://code.jquery.com/jquery-3.3.1.slim.min.js" integrity="sha384-q8i/X+965DzO0rT7abK41JStQIAqVgRVzpbzo5smXKp4YfRvH+8abtTE1Pi6jizo" crossorigin="anonymous"></script> 7 <script src="https://cdnjs.cloudflare.com/ajax/libs/popper.js/1.14.7/umd/popper.min.js" integrity="sha384-UO2eT0CpHqdSJQ6hJty5KVphtPhzWj9WO1clHTMGa3JDZwrnQq4sF86dIHNDz0W1" crossorigin="anonymous"></script> 8 <script src="https://stackpath.bootstrapcdn.com/bootstrap/4.3.1/js/bootstrap.min.js" integrity="sha384-JjSmVgyd0p3pXB1rRibZUAYoIIy6OrQ6VrjIEaFf/nJGzIxFDsf4x0xIM+B07jRM" crossorigin="anonymous"></script> 9 </head> 10 <body> 1 <div> 11 2 <form th:method="POST" th:action="@{/login}"> 12 3 <div class="container"> … … 26 17 </form> 27 18 <a href="/register" class="btn btn-block btn-light">Регистрирај се</a> 28 </body> 29 </html> 19 </div> -
src/main/resources/templates/ordersForUser.html
rfeffc2f r60de3eb 1 <!DOCTYPE html> 2 <html lang="en"> 3 <head> 4 <meta charset="UTF-8"> 5 <title>Мои нарачки</title> 6 </head> 7 <body> 1 <div> 8 2 <h1>Мои нарачки</h1> 9 3 <table> … … 27 21 </tbody> 28 22 </table> 29 </body> 30 </html> 23 </div> -
src/main/resources/templates/partinfo.html
rfeffc2f r60de3eb 1 <!DOCTYPE html> 2 <html lang="en"> 3 <head> 4 <meta charset="UTF-8"> 5 <title>Детали</title> 6 </head> 7 <body> 1 <div> 8 2 <p th:text="${part.getName()}"></p> 9 3 <p th:text="${part.getDescription()}"></p> … … 16 10 <button type="submit">Купи</button> 17 11 </form> 18 </body> 19 </html> 12 </div> -
src/main/resources/templates/register.html
rfeffc2f r60de3eb 1 <html xmlns="http://www.w3.org/1999/xhtml" xmlns:th="http://www.thymeleaf.org" lang="en"> 2 <head> 3 <title>Login form</title> 4 <!-- <link href="/main.css" rel="stylesheet"/>--> 5 <title>Login</title> 6 <link rel="stylesheet" href="https://stackpath.bootstrapcdn.com/bootstrap/4.3.1/css/bootstrap.min.css" integrity="sha384-ggOyR0iXCbMQv3Xipma34MD+dH/1fQ784/j6cY/iJTQUOhcWr7x9JvoRxT2MZw1T" crossorigin="anonymous"/> 7 <script src="https://code.jquery.com/jquery-3.3.1.slim.min.js" integrity="sha384-q8i/X+965DzO0rT7abK41JStQIAqVgRVzpbzo5smXKp4YfRvH+8abtTE1Pi6jizo" crossorigin="anonymous"></script> 8 <script src="https://cdnjs.cloudflare.com/ajax/libs/popper.js/1.14.7/umd/popper.min.js" integrity="sha384-UO2eT0CpHqdSJQ6hJty5KVphtPhzWj9WO1clHTMGa3JDZwrnQq4sF86dIHNDz0W1" crossorigin="anonymous"></script> 9 <script src="https://stackpath.bootstrapcdn.com/bootstrap/4.3.1/js/bootstrap.min.js" integrity="sha384-JjSmVgyd0p3pXB1rRibZUAYoIIy6OrQ6VrjIEaFf/nJGzIxFDsf4x0xIM+B07jRM" crossorigin="anonymous"></script> 10 </head> 11 <body> 1 <div> 12 2 <form th:method="POST" th:action="@{/register}"> 13 3 <div class="container"> … … 43 33 </form> 44 34 <a href="/login" class="btn btn-block btn-light">Веќе имате сметка? Најавете се</a> 45 </body> 46 </html> 35 </div> -
src/main/resources/templates/repairsForUser.html
rfeffc2f r60de3eb 1 <!DOCTYPE html> 2 <html lang="en"> 3 <head> 4 <meta charset="UTF-8"> 5 <title>Мои поправки</title> 6 </head> 7 <body> 1 <div> 8 2 <h1>Мои поправки</h1> 9 3 <table> … … 12 6 <th>Датум на нарачка</th> 13 7 <th>Нарачан дел</th> 14 <th>Број на шасија</th> 0olji8 <th>Број на шасија</th> 15 9 <th>Име на сервис</th> 16 10 </tr> … … 25 19 </tbody> 26 20 </table> 27 </body> 28 </html> 21 </div> -
src/main/resources/templates/reviewsForUser.html
rfeffc2f r60de3eb 1 <!DOCTYPE html> 2 <html lang="en"> 3 <head> 4 <meta charset="UTF-8"> 5 <title>Мои критики</title> 6 </head> 7 <body> 1 <div> 8 2 <h1>Мои критики</h1> 9 3 <table> … … 25 19 </tbody> 26 20 </table> 27 </body> 28 </html> 21 </div>
Note:
See TracChangeset
for help on using the changeset viewer.