source: src/main/resources/templates/deliveryForPart.html@ feffc2f

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

Added some views and functionalities

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