source: src/main/resources/templates/kupiBilet.html@ e272096

Last change on this file since e272096 was e272096, checked in by ppaunovski <paunovskipavel@…>, 4 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: 576 bytes
Line 
1<div xmlns:th="http://www.thymeleaf.org">
2
3
4 <div style="width: 500px">
5 <form method="post" action="/bilet/kupi">
6
7 <p>
8 <label for="tipbilet" class="sr-only">Tip Bilet</label>
9 <select id="tipbilet" name="tipbilet" class="form-control">
10 <option class="form-control" th:each="tip : ${tipbileti}" th:value="${tip.tbId}" th:text="${tip.tbIme}"></option>
11 </select>
12 </p>
13
14 <input type="submit" value="Kupi" class="btn btn-success">
15 </form>
16
17 </div>
18</div>
19
20
Note: See TracBrowser for help on using the repository browser.