Last change
on this file since baf4cc4 was bde8b13, checked in by ppaunovski <paunovskipavel@…>, 10 months ago |
All 3 main use cases implemented.
- Starting a commute
- Writing a ticket
- 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.