diff options
Diffstat (limited to 'src/main/resources/templates/index.html')
-rw-r--r-- | src/main/resources/templates/index.html | 37 |
1 files changed, 37 insertions, 0 deletions
diff --git a/src/main/resources/templates/index.html b/src/main/resources/templates/index.html new file mode 100644 index 0000000..b33e45f --- /dev/null +++ b/src/main/resources/templates/index.html @@ -0,0 +1,37 @@ +<!doctype html> +<html lang="en" xmlns:th="http://www.thymeleaf.org" + xmlns:sec="http://www.thymeleaf.org"> +<head> + <meta charset="utf-8"> + <meta name="viewport" content="width=device-width, initial-scale=1"> + <title>builddb</title> + <link href="https://cdn.jsdelivr.net/npm/bootstrap@5.3.3/dist/css/bootstrap.min.css" rel="stylesheet" integrity="sha384-QWTKZyjpPEjISv5WaRU9OFeRpok6YctnYmDr5pNlyT2bRjXh0JMhjY6hW+ALEwIH" crossorigin="anonymous"> + <link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.0.0/css/all.min.css"> +</head> +<body> + +<nav th:insert="~{/navbar :: navigation}"></nav> + +<hr> + +<div class="container py-5"> + <h1 class="text-center">Builddb</h1> + + + + <a class="btn btn-primary me-3" sec:authorize="hasRole('client')" href="/pkgs">Packages</a> +</div> + +<hr> + +<div th:if="${tableError}" + class="alert alert-danger alert-dismissible fade show" role="alert"> + + <strong>Invalid table!</strong> + <button type="button" class="btn-close" data-bs-dismiss="alert" + aria-label="Close"></button> +</div> + +<script src="https://cdn.jsdelivr.net/npm/bootstrap@5.3.3/dist/js/bootstrap.bundle.min.js" integrity="sha384-YvpcrYf0tY3lHB60NNkmXc5s9fDVZLESaAA55NDzOxhy9GkcIdslK1eN7N6jIeHz" crossorigin="anonymous"></script> +</body> +</html>
\ No newline at end of file |