Changeset e272096 for src/main/resources/templates/register.html
- Timestamp:
- 02/18/24 22:01:54 (14 months ago)
- Branches:
- master
- Children:
- 4251327
- Parents:
- bde8b13
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
src/main/resources/templates/register.html
rbde8b13 re272096 1 1 <div xmlns:th="http://www.thymeleaf.org"> 2 <section class="jumbotron text-center">3 <div class="container">4 <h1 class="jumbotron-heading">WEB PROGRAMMING SHOP</h1>5 <h3 class="jumbotron-heading">All products</h3>6 </div>7 </section>8 2 9 3 <div class="container mb-4"> … … 35 29 </p> 36 30 31 <p sec:authorize="hasRole('ROLE_ADMIN')"> 32 <label for="vrabotenType" class="sr-only">Vraboten Type</label> 33 <select name="vrabotenType" id="vrabotenType"> 34 <option th:each="type : ${types}" 35 th:text="${type.name()}" 36 th:value="${type}" ></option> 37 </select> 38 </p> 39 40 <p sec:authorize="hasRole('ROLE_ADMIN')"> 41 <label for="salary" class="sr-only">Salary</label> 42 <input type="number" id="salary" name="salary"> 43 </p> 44 45 37 46 38 47
Note:
See TracChangeset
for help on using the changeset viewer.