Changeset 6791e89 for src/main/resources/templates
- Timestamp:
- 09/22/22 21:16:07 (2 years ago)
- Branches:
- master
- Parents:
- 3692f0d
- Location:
- src/main/resources/templates
- Files:
-
- 4 edited
Legend:
- Unmodified
- Added
- Removed
-
src/main/resources/templates/book.html
r3692f0d r6791e89 61 61 <th scope="col">Цена</th> 62 62 <th scope="col">Цена со задоцнување</th> 63 <th scope="col">Автор</th> 64 <th scope="col">Жанр</th> 63 <!-- <th scope="col">Автор</th> --> 64 <!-- <th scope="col">Жанр</th> --> 65 <th scope="col"></th> 65 66 <th scope="col"></th> 66 67 </thead> … … 71 72 <td th:text="${book.getBookPrice()}"></td> 72 73 <td th:text="${book.getBookPriceLate()}"></td> 73 < td th:each="writer : ${writers}" th:if="${book.getWriters().contains(writer)}" th:text="${writer.getWriterName()}"></td>74 < td th:each="genre : ${genres}" th:if="${book.getGenre().contains(genre)}" th:text="${genre.getGenreName()}"></td>74 <!-- <td th:each="writer : ${writers}" th:if="${book.getWriters().contains(writer)}" th:text="${writer.getWriterName()}"></td> --> 75 <!-- <td th:each="genre : ${genres}" th:if="${book.getGenre().contains(genre)}" th:text="${genre.getGenreName()}"></td> --> 75 76 <td><a class="btn btn-primary btn-sm ml-3" href="/resBook">Резервација</a> 76 77 <a class="btn btn-primary btn-sm ml-3" href="/online">Симнување</a></td> -
src/main/resources/templates/login.html
r3692f0d r6791e89 36 36 </nav> 37 37 38 <section class="jumbotron text-center"> 38 39 <div class="container"> 39 40 <form class="form-signin mt-xl-5" method="post" action="/login"> 40 <h2 class="form-signin-heading"> Најава</h2>41 <h2 class="form-signin-heading"><b>Најава</b></h2> 41 42 <p> 42 43 <label for="username" class="sr-only">Корисничко име:</label> … … 53 54 <button class="btn btn-lg btn-primary btn-block" type="submit">Најави се</button> 54 55 </form> 56 <br> 55 57 <a href="/register" class="btn btn-block btn-light">Регистрирај се тука</a> 56 58 </div> 59 </section> 57 60 58 61 <!-- Footer --> -
src/main/resources/templates/register.html
r3692f0d r6791e89 43 43 <div class="container"> 44 44 45 <form class="form-signin mt-xl- 2 col-md-8" method="post" action="/register">46 <h2 class="form-signin-heading"> Регистрација</h2>45 <form class="form-signin mt-xl-5" method="post" action="/register"> 46 <h2 class="form-signin-heading"><b>Регистрација</b></h2> 47 47 <br> 48 48 <p> … … 94 94 95 95 </div> 96 </section> 96 97 97 98 98 <!-- Footer --> -
src/main/resources/templates/resBook.html
r3692f0d r6791e89 42 42 43 43 <!--Main--> 44 <div class="container"> 45 <section class="jumbotron text-center"> 46 <h2 class="jumbotron-heading"><b>Резервација на книга</b></h2> 47 </section> 44 <section class="jumbotron text-center"> 45 48 46 49 47 <div th:if="${hasError}"> … … 51 49 </div> 52 50 53 <div class="container mb-4">54 < div class="row">51 <div class="container"> 52 <form class="form-signin mt-xl-5" method="post" action="/resBook"> 55 53 56 </div> 54 <h2 class="jumbotron-heading"><b>Резервација на книга</b></h2> 55 56 <div class="container mb-4"> 57 <div class="row"> 58 <p> 59 <label for="bookName" class="sr-only" th:text="${book.getId()}"></label> 60 <input type="text" id="bookName" name="bookName" class="form-control" th:placeholder="${book.getBookName()}" required="" disabled > 61 </p> 62 </div> 63 </div> 64 65 <div class="container mb-4"> 66 <div class="row"> 67 <p>Датум земање книга 68 <label for="takeDate" class="sr-only">Датум земање книга</label> 69 <input type="date" id="takeDate" name="takeDate" class="form-control" placeholder="Take Date" required="" autofocus=""> 70 </p> 71 <br> 72 <p>Датум враќање книга 73 <label for="returnDate" class="sr-only">Датум враќање книга</label> 74 <input type="date" id="returnDate" name="returnDate" class="form-control" placeholder="Return Date" required="" autofocus=""> 75 </p> 76 </div> 77 </div> 78 </form> 79 <button class="btn btn-lg btn-primary btn-block" type="submit">ПОТВРДИ РЕЗЕРВАЦИЈА</button> 80 <br> 81 <a href="/book" class="btn btn-block btn-light">ОТКАЖИ РЕЗЕРВАЦИЈА</a> 57 82 </div> 58 83 59 </ div>84 </section> 60 85 61 86 <!-- Footer -->
Note:
See TracChangeset
for help on using the changeset viewer.