поправила html-ки и теперь все красиво
This commit is contained in:
parent
534db18d1f
commit
23789c477e
@ -9,5 +9,6 @@ public class WebConfiguration implements WebMvcConfigurer {
|
||||
@Override
|
||||
public void addViewControllers(ViewControllerRegistry registry) {
|
||||
registry.addViewController("/login").setViewName("login");
|
||||
// registry.addViewController("/").setViewName("default");
|
||||
}
|
||||
}
|
||||
|
@ -13,8 +13,8 @@ spring.datasource.password=elina
|
||||
spring.datasource.driver-class-name=org.h2.Driver
|
||||
spring.jpa.hibernate.ddl-auto=create
|
||||
spring.jpa.open-in-view=false
|
||||
spring.jpa.show-sql=true
|
||||
spring.jpa.properties.hibernate.format_sql=true
|
||||
#spring.jpa.show-sql=true
|
||||
#spring.jpa.properties.hibernate.format_sql=true
|
||||
|
||||
# H2 console
|
||||
spring.h2.console.enabled=true
|
||||
|
@ -137,3 +137,7 @@
|
||||
font-size: 3.5vh;
|
||||
text-decoration: underline;
|
||||
}
|
||||
|
||||
html {
|
||||
height: 100%;
|
||||
}
|
@ -8,7 +8,7 @@
|
||||
<body>
|
||||
|
||||
<main layout:fragment="content" class='main-bg-into d-flex flex-fill'>
|
||||
<form action="#" th:action="@{/login}" method="post"
|
||||
<form action="#" th:action="@{/categories}" method="post"
|
||||
class="body flex-fill d-flex flex-column justify-content-around align-items-center" id="into-page">
|
||||
|
||||
<p class="text-label mt-4 d-flex flex-column align-items-center align-content-center">
|
||||
|
@ -5,22 +5,23 @@
|
||||
|
||||
<head>
|
||||
<meta charset="UTF-8" />
|
||||
<!-- <link rel="image" type="image/svg+xml" src="../public/images/logo_livecinema.png" /> -->
|
||||
<link rel="icon" type="image" src="/images/logo_livecinema.png">
|
||||
<meta name=" viewport" content="width=device-width, initial-scale=1.0" />
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
|
||||
<title layout:title-pattern="$LAYOUT_TITLE - $CONTENT_TITLE">LiveCinema</title>
|
||||
<script type="text/javascript" src="/webjars/bootstrap/5.3.3/dist/js/bootstrap.bundle.min.js"></script>
|
||||
<link rel="stylesheet" href="/webjars/bootstrap/5.3.3/dist/css/bootstrap.min.css" />
|
||||
<link rel="stylesheet" href="/webjars/bootstrap-icons/1.11.3/font/bootstrap-icons.min.css" />
|
||||
<link rel="stylesheet" href="/css/style.css" />
|
||||
<meta http-equiv="Cache-Control" content="no-store, no-cache, must-revalidate">
|
||||
<meta http-equiv="Pragma" content="no-cache">
|
||||
<meta http-equiv="Expires" content="0">
|
||||
</head>
|
||||
|
||||
<body class="">
|
||||
<nav expand="md" data-bs-theme="dark" class="my-navbar">
|
||||
<body class="d-flex flex-column flex-fill h-100">
|
||||
<nav expand="md" data-bs-theme="dark" class="navbar my-navbar navbar-expand-md">
|
||||
<div class="container-fluid">
|
||||
<a class="navbar-brand" href="/">
|
||||
<!-- <i class="bi bi-cart2 d-inline-block align-top me-1 logo"></i> -->
|
||||
<img src="/images/logo_livecinema.png" alt="" class="logo" style="height: 2vh;" />
|
||||
<img src="/images/logo_livecinema.png" class="logo" style="height: 2vh;" />
|
||||
LiveCinema
|
||||
</a>
|
||||
<th:block sec:authorize="isAuthenticated()" th:with="userName=${#authentication.name}">
|
||||
@ -33,6 +34,10 @@
|
||||
<th:block sec:authorize="hasRole('ADMIN')">
|
||||
<a class="nav-link" href="/admin/categories" th:classappend="${activeLink.startsWith('/admin/movies')
|
||||
? 'active' : '' }">
|
||||
Категории
|
||||
</a>
|
||||
<a class="nav-link" href="/admin/movies" th:classappend="${activeLink.startsWith('/admin/movies')
|
||||
? 'active' : '' }">
|
||||
Фильмы
|
||||
</a>
|
||||
<a class="nav-link" href="/h2-console/" target="_blank">Консоль H2</a>
|
||||
@ -51,9 +56,9 @@
|
||||
</th:block>
|
||||
</div>
|
||||
</nav>
|
||||
<main class="w-100 flex-fill d-flex justify-content-center p-0 m-0" layout:fragment="content">
|
||||
<main layout:fragment="content" class="d-flex flex-column flex-fill">
|
||||
</main>
|
||||
<footer class="my-footer mt-auto d-flex flex-shrink-0 justify-content-center align-items-center">
|
||||
<footer class="my-footer mt-auto d-flex flex-shrink-0 justify-content-center">
|
||||
Бакальская Е.Д. (@)LiveCinema [[${#dates.year(#dates.createNow())}]]. Все права защищены
|
||||
</footer>
|
||||
</body>
|
||||
|
37
backend/src/main/resources/templates/error.html
Normal file
37
backend/src/main/resources/templates/error.html
Normal file
@ -0,0 +1,37 @@
|
||||
<!DOCTYPE html>
|
||||
<html lang="ru" xmlns:layout="http://www.ultraq.net.nz/thymeleaf/layout" layout:decorate="~{default}">
|
||||
|
||||
<head>
|
||||
<title>Ошибка</title>
|
||||
</head>
|
||||
|
||||
<body>
|
||||
<main layout:fragment="content">
|
||||
<ul class="list-group mb-2">
|
||||
<th:block th:if="${#strings.isEmpty(message)}">
|
||||
<li class="list-group-item">
|
||||
Неизвестная ошибка
|
||||
</li>
|
||||
</th:block>
|
||||
<th:block th:if="${not #strings.isEmpty(message)}">
|
||||
<li class="list-group-item">
|
||||
<strong>Ошибка:</strong> [[${message}]]
|
||||
</li>
|
||||
</th:block>
|
||||
<th:block th:if="${not #strings.isEmpty(url)}">
|
||||
<li class="list-group-item">
|
||||
<strong>Адрес:</strong> [[${url}]]
|
||||
</li>
|
||||
<li class="list-group-item">
|
||||
<strong>Класс исключения:</strong> [[${exception}]]
|
||||
</li>
|
||||
<li class="list-group-item">
|
||||
[[${method}]] ([[${file}]]:[[${line}]])
|
||||
</li>
|
||||
</th:block>
|
||||
</ul>
|
||||
<a class="btn btn-primary button-fixed-width" href="/">На главную</a>
|
||||
</main>
|
||||
</body>
|
||||
|
||||
</html>
|
@ -6,8 +6,7 @@
|
||||
</head>
|
||||
|
||||
<body>
|
||||
|
||||
<main layout:fragment="content" class='main-bg-into d-flex flex-fill'>
|
||||
<main layout:fragment="content" class="main-bg-into w-100 flex-fill d-flex justify-content-center p-0 m-0">
|
||||
<form action="#" th:action="@{/login}" method="post"
|
||||
class="body flex-fill d-flex flex-column justify-content-around align-items-center" id="into-page">
|
||||
|
||||
|
@ -5,7 +5,7 @@
|
||||
<title>Регистрация</title>
|
||||
</head>
|
||||
|
||||
<body class="d-flex flex-column">
|
||||
<body>
|
||||
<main layout:fragment="content">
|
||||
<form action="#" th:action="@{/signup}" th:object="${user}" method="post" class="flex-fill d-flex"
|
||||
id="login-page">
|
||||
|
BIN
data.mv.db
BIN
data.mv.db
Binary file not shown.
Loading…
Reference in New Issue
Block a user