mirror of
https://github.com/pcvolkmer/etl-processor.git
synced 2025-04-20 01:36:50 +00:00
23 lines
1014 B
HTML
23 lines
1014 B
HTML
<!DOCTYPE html>
|
|
<html lang="de" xmlns:th="http://www.thymeleaf.org">
|
|
<head>
|
|
<meta charset="UTF-8">
|
|
<title>ETL-Prozessor</title>
|
|
<link rel="stylesheet" th:href="@{/style.css}" />
|
|
</head>
|
|
<body>
|
|
<div th:replace="~{fragments.html :: nav}"></div>
|
|
<main>
|
|
<div class="login-form">
|
|
<h2 class="centered">Anmelden</h2>
|
|
<div class="centered notification error" th:if="${param.error}">Anmeldung nicht erfolgreich</div>
|
|
<div class="centered notification success" th:if="${param.logout}">Sie haben sich abgemeldet</div>
|
|
<form method="post" th:action="@{/login}">
|
|
<input type="text" id="username" name="username" class="form-control" placeholder="Username" required="" autofocus="">
|
|
<input type="password" id="password" name="password" class="form-control" placeholder="Password" required="">
|
|
<button class="" type="submit">Anmelden</button>
|
|
</form>
|
|
</div>
|
|
</main>
|
|
</body>
|
|
</html> |