source: Git/src/main/resources/templates/template.html@ f25e8dd

main
Last change on this file since f25e8dd was f25e8dd, checked in by Petar Partaloski <ppartaloski@…>, 2 years ago

Fixed and added a better front end, improved 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">
19 <div class="container">
20 <!--<img th:src="@{/img/logo.png}" style="opacity: 0.3; z-index: 5; position: absolute; margin: auto; height: 225px; width: auto; left: 42%; top: 2%">-->
21 <h1 class="jumbotron-heading" style="z-index: -1">weDiscussMovies</h1>
22 </div>
23</section>
24
25<header th:replace="fragments/header"></header>
26<div class="container md-4">
27 <h1 class="danger" th:text="${error?.toString()}"></h1>
28</div>
29<section th:include="${contentTemplate}"></section>
30<div id="dialog-rating" style="display: none">
31 <label for="reason">Причина</label><textarea id="reason"></textarea>
32 <label for="grade">Рејтинг</label><input type="number" id="grade" max="10" min="5">
33</div>
34</body>
35</html>
36
37
Note: See TracBrowser for help on using the repository browser.