Projekt

Obecné

Profil

Stáhnout (2.59 KB) Statistiky
| Větev: | Revize:
1
<!DOCTYPE html>
2
<html lang="en" xmlns:th="http://www.thymeleaf.org"
3
      xmlns:layout="http://www.ultraq.net.nz/thymeleaf/layout" xmlns:sec="http://www.w3.org/1999/xhtml">
4
    <head>
5
        <meta charset="utf-8">
6
        <meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
7
        <meta name="description" content="">
8

    
9
        <title layout:title-pattern="$DECORATOR_TITLE - $CONTENT_TITLE">Export dat</title>
10
        <link rel="canonical" href="https://getbootstrap.com/docs/4.4/examples/album/">
11

    
12
        <!-- Bootstrap core CSS -->
13
        <link href="/css/bootstrap.min.css" rel="stylesheet">
14
        <link href="/css/fontawesome.min.css" rel="stylesheet">
15
        <link href="/css/style.css" rel="stylesheet">
16

    
17
        <link href="//code.jquery.com/ui/1.11.1/themes/smoothness/jquery-ui.css" rel="stylesheet">
18

    
19
        <script type="text/javascript" src="js/jquery.js"></script>
20
        <script src="//code.jquery.com/jquery-1.11.1.js"></script>
21
        <script src="//code.jquery.com/ui/1.11.1/jquery-ui.js"></script>
22

    
23
        <link href="css/bootstrap-select.min.css" rel="stylesheet">
24

    
25
        <script src="https://cdnjs.cloudflare.com/ajax/libs/popper.js/1.12.9/umd/popper.min.js" integrity="sha384-ApNbgh9B+Y1QKtv3Rn7W3mgPxhU9K/ScQsAP7hUibX39j7fakFPskvXusvfa0b4Q" crossorigin="anonymous"></script>
26
        <script type="text/javascript" src="js/bootstrap.min.js"></script>
27
        <script type="text/javascript" src="js/bootstrap-select.min.js"></script>
28

    
29
    </head>
30
    <body>
31

    
32
        <div th:if="${errorText}" >
33
            <div class="alert alert-danger">
34
                <span th:text="${errorText}"></span>
35
            </div>
36
        </div>
37
        <div th:if="${successText}" >
38
            <div class="alert alert-success">
39
                <span th:text="${successText}"></span>
40
            </div>
41
        </div>
42

    
43
        <div sec:authorize="isAuthenticated()" class="user-panel">
44
            <span>Přihlášený uživatel: <span sec:authentication="name"></span>, Role: <span sec:authentication="principal.authorities"></span></span>
45
            <a href="#" onclick="document.forms['logoutForm'].submit()">Odhlásit se</a>
46

    
47
            <form id="logoutForm" method="POST" th:action="@{/logout}">
48
                <input type="hidden" name="${_csrf.parameterName}" value="${_csrf.token}"/>
49
            </form>
50
        </div>
51

    
52
        <main role="main">
53
            <div layout:fragment="content"></div>
54
        </main>
55

    
56
        <footer class="text-muted">
57
            <div class="container">
58

    
59
            </div>
60
        </footer>
61

    
62
        <div layout:fragment="scripts"></div>
63

    
64
    </body>
65
</html>
    (1-1/1)