main
Last change
on this file since c02189f was c02189f, checked in by Petar Partaloski <ppartaloski@…>, 3 years ago |
Added new core functionalities, fixed bugs and improved visual clarity
|
-
Property mode
set to
100644
|
File size:
2.1 KB
|
Line | |
---|
1 | <!DOCTYPE html>
|
---|
2 | <html lang="en" xmlns="http://www.w3.org/1999/xhtml" xmlns:th="http://www.thymeleaf.org">
|
---|
3 | <head>
|
---|
4 | <meta charset="UTF-8"/>
|
---|
5 | <title>weDiscussMovies</title>
|
---|
6 | <link rel="stylesheet" href="https://stackpath.bootstrapcdn.com/bootstrap/4.3.1/css/bootstrap.min.css" integrity="sha384-ggOyR0iXCbMQv3Xipma34MD+dH/1fQ784/j6cY/iJTQUOhcWr7x9JvoRxT2MZw1T" crossorigin="anonymous">
|
---|
7 | <script src="https://code.jquery.com/jquery-3.3.1.slim.min.js" integrity="sha384-q8i/X+965DzO0rT7abK41JStQIAqVgRVzpbzo5smXKp4YfRvH+8abtTE1Pi6jizo" crossorigin="anonymous"></script>
|
---|
8 | <script src="https://cdnjs.cloudflare.com/ajax/libs/popper.js/1.14.7/umd/popper.min.js" integrity="sha384-UO2eT0CpHqdSJQ6hJty5KVphtPhzWj9WO1clHTMGa3JDZwrnQq4sF86dIHNDz0W1" crossorigin="anonymous"></script>
|
---|
9 | <script src="https://stackpath.bootstrapcdn.com/bootstrap/4.3.1/js/bootstrap.min.js" integrity="sha384-JjSmVgyd0p3pXB1rRibZUAYoIIy6OrQ6VrjIEaFf/nJGzIxFDsf4x0xIM+B07jRM" crossorigin="anonymous"></script>
|
---|
10 | <script type="text/javascript" th:src="@{/js/sharedScript.js}" src=""></script>
|
---|
11 | <script src="https://code.jquery.com/jquery-3.6.0.js"></script>
|
---|
12 | <script src="https://code.jquery.com/ui/1.13.0/jquery-ui.js"></script>
|
---|
13 | <link rel="stylesheet" href="//code.jquery.com/ui/1.13.0/themes/base/jquery-ui.css">
|
---|
14 |
|
---|
15 | <link rel="stylesheet" th:href="@{/css/shared.css}" >
|
---|
16 | </head>
|
---|
17 | <body>
|
---|
18 | <section class="jumbotron text-center" style="background: url('/img/cover.jpg') center; background-repeat: no-repeat; background-size: 100% auto; height: 280px; margin-bottom: 0px ">
|
---|
19 | <div class="container" >
|
---|
20 | <h1 class="jumbotron-heading" style="z-index: -1"></h1>
|
---|
21 | </div>
|
---|
22 | </section>
|
---|
23 |
|
---|
24 | <header th:replace="fragments/header"></header>
|
---|
25 | <div class="container md-4">
|
---|
26 | <h1 class="danger" th:text="${error?.toString()}"></h1>
|
---|
27 | </div>
|
---|
28 | <section th:include="${contentTemplate}"></section>
|
---|
29 | <div id="dialog-rating" style="display: none">
|
---|
30 | <label for="reason">Причина</label><textarea id="reason"></textarea>
|
---|
31 | <label for="grade">Рејтинг</label><input type="number" id="grade" max="10" min="5">
|
---|
32 | </div>
|
---|
33 | </body>
|
---|
34 | </html>
|
---|
35 |
|
---|
36 |
|
---|
Note:
See
TracBrowser
for help on using the repository browser.