Line | |
---|
1 | <div class="container">
|
---|
2 | <h1 th:if="${hasError}" th:text="${error}"></h1>
|
---|
3 | </div>
|
---|
4 | <div class="container">
|
---|
5 | <form class="form-signin mt-xl-5" method="post" action="/finishRegister">
|
---|
6 | <h2 class="form-signin-heading" style="color: white">Избери кино, внеси позиција и работно време</h2>
|
---|
7 |
|
---|
8 | <div class="form-group">
|
---|
9 | <label style="color: white;font-size: 20px;font-weight: bold">Избери кинотека</label>
|
---|
10 | <select name="id_cinema" class="form-control" id="id_cinema">
|
---|
11 | <option
|
---|
12 | th:selected="${cinemas.get(1)}"
|
---|
13 | th:each="cinema : ${cinemas}"
|
---|
14 | th:value="${cinema.getId_cinema()}"
|
---|
15 | th:text="${cinema.getName()}">
|
---|
16 | </option>
|
---|
17 | </select>
|
---|
18 |
|
---|
19 | </div>
|
---|
20 | <p>
|
---|
21 | <label for="position" class="sr-only" style="color: white">Позиција</label>
|
---|
22 | <input type="text" id="position" name="position" class="form-control" placeholder="Позиција" required=""
|
---|
23 | autofocus="">
|
---|
24 | </p>
|
---|
25 |
|
---|
26 | <p>
|
---|
27 | <label for="work_hours_from" class="sr-only" style="color: white">Почеток работно време</label>
|
---|
28 | <input type="text" id="work_hours_from" name="work_hours_from" class="form-control" placeholder="Почеток работно време" required="" autofocus="">
|
---|
29 | </p>
|
---|
30 | <p>
|
---|
31 | <label for="work_hours_to" class="sr-only" style="color: white">Крај работно време</label>
|
---|
32 | <input type="text" id="work_hours_to" name="work_hours_to" class="form-control" placeholder="Крај работно време" required="" autofocus="">
|
---|
33 | </p>
|
---|
34 |
|
---|
35 | <button style="background-color: #ff5019;border-color: #ff5019" class="btn btn-lg btn-primary btn-block" type="submit">Регистрирај се</button>
|
---|
36 | </form>
|
---|
37 |
|
---|
38 | </div>
|
---|
Note:
See
TracBrowser
for help on using the repository browser.