Projekt

Obecné

Profil

Stáhnout (2.74 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
    <div id="spinner-overlay">
32
        <div class="loader"></div>
33
    </div>
34

    
35

    
36
    <div th:if="${!#strings.isEmpty(errorText)}" >
37
            <div class="alert alert-danger">
38
                <span th:text="${errorText}"></span>
39
            </div>
40
        </div>
41
        <div th:if="${!#strings.isEmpty(successText)}" >
42
            <div class="alert alert-success">
43
                <span th:text="${successText}"></span>
44
            </div>
45
        </div>
46

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

    
54
            <form id="logoutForm" method="POST" th:action="@{/logout}">
55
                <input type="hidden" name="${_csrf.parameterName}" value="${_csrf.token}"/>
56
            </form>
57
        </div>
58

    
59
        <main role="main">
60
            <div layout:fragment="content"></div>
61
        </main>
62

    
63
        <footer class="text-muted">
64
            <div class="container">
65

    
66
            </div>
67
        </footer>
68

    
69
        <div layout:fragment="scripts"></div>
70

    
71
    </body>
72
</html>
    (1-1/1)