main
Last change
on this file since 3fe36de was 3fe36de, checked in by Petar Partaloski <ppartaloski@…>, 3 years ago |
Added User profiles, improved clarity, improved UI
|
-
Property mode
set to
100644
|
File size:
2.1 KB
|
Rev | Line | |
---|
[5b447b0] | 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"/>
|
---|
[f25e8dd] | 5 | <title>weDiscussMovies</title>
|
---|
[5b447b0] | 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>
|
---|
[3fe36de] | 18 | <a href="/movies">
|
---|
| 19 |
|
---|
| 20 | <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 ">
|
---|
| 21 | <div class="container" >
|
---|
| 22 | <h1 class="jumbotron-heading" style="z-index: -1"></h1>
|
---|
| 23 | </div>
|
---|
| 24 | </section>
|
---|
| 25 | </a>
|
---|
[5b447b0] | 26 |
|
---|
| 27 | <header th:replace="fragments/header"></header>
|
---|
| 28 | <div class="container md-4">
|
---|
| 29 | <h1 class="danger" th:text="${error?.toString()}"></h1>
|
---|
| 30 | </div>
|
---|
| 31 | <section th:include="${contentTemplate}"></section>
|
---|
| 32 | <div id="dialog-rating" style="display: none">
|
---|
| 33 | <label for="reason">Причина</label><textarea id="reason"></textarea>
|
---|
| 34 | <label for="grade">Рејтинг</label><input type="number" id="grade" max="10" min="5">
|
---|
| 35 | </div>
|
---|
| 36 | </body>
|
---|
| 37 | </html>
|
---|
| 38 |
|
---|
| 39 |
|
---|
Note:
See
TracBrowser
for help on using the repository browser.