source: src/main/resources/templates/deliveryForPart.html@ 60de3eb

main
Last change on this file since 60de3eb was 60de3eb, checked in by andrejtodorovski <82031894+andrejtodorovski@…>, 18 months ago

Added master template and added filtering parts by car and category

  • Property mode set to 100644
File size: 1.1 KB
Line 
1<div>
2<header>
3 <h1>Податоци за достава</h1>
4</header>
5<main>
6 <h3>Достава до дома</h3>
7 <form class="form-signin mt-xl-5" method="post" action="/part/homedelivery">
8 <p>
9 <label for="address" class="sr-only">Адреса</label>
10 <input type="text" id="address" name="address" class="form-control" placeholder="Внесете ја вашата адреса" required="" autofocus=""/>
11 </p>
12 <button class="btn btn-lg btn-primary btn-block" type="submit">Достава до дома</button>
13 </form>
14 <h3>Достава до овластен сервис</h3>
15 <form class="form-signin mt-xl-5" method="post" action="/part/repairshopdelivery">
16 <p>
17 <label for="repairShop" class="sr-only">Избор на овластен сервис</label>
18 <select id="repairShop" required name="name">
19 <option th:each="rs : ${repairShops}"
20 th:text="${rs.getName()}"
21 th:value="${rs.getId()}">
22 </option>
23 </select>
24 </p>
25 <button class="btn btn-lg btn-primary btn-block" type="submit">Достава до сервис</button>
26 </form>
27</main>
28
29</div>
Note: See TracBrowser for help on using the repository browser.