source: src/main/resources/templates/choosePostojka.html@ bde8b13

Last change on this file since bde8b13 was bde8b13, checked in by ppaunovski <paunovskipavel@…>, 6 months ago

All 3 main use cases implemented.

  1. Starting a commute
  2. Writing a ticket
  3. Starting an instance of a Bus Line
  • Property mode set to 100644
File size: 736 bytes
Line 
1<div class="container" xmlns:th="http://www.thymeleaf.org">
2 <form class="form-signin mt-xl-5" method="get" action="/vozenje/choose-postojka">
3 <h2 class="form-signin-heading">Odberete postojka na koja se naogjate</h2>
4 <p>
5 <label for="pnlId" class="sr-only">Postojka</label>
6 <select class="form-control" name="pnlId" id="pnlId">
7 <option class="form-control" th:each="postojka : ${postojki}" th:text="${postojka.postojkaByPId.pIme}" th:value="${postojka.pnlId}" ></option>
8 </select>
9
10
11 </p>
12 <div class="col-md-3">
13 <button id="submit" class="btn btn-lg btn-primary btn-block" type="submit">Odberi</button>
14 </div>
15 </form>
16</div>
17
Note: See TracBrowser for help on using the repository browser.