23 lines
882 B
HTML
23 lines
882 B
HTML
<!DOCTYPE html>
|
|
<html lang="de">
|
|
<head>
|
|
<title> Log In 👀</title>
|
|
<link rel="stylesheet" type="text/css" href="{{ url_for('static', filename='style.css') }}">
|
|
|
|
<script async src="https://analytics.paulmartin.cloud/script.js" data-website-id="459fa66e-e255-4393-8e89-ead8b1572d0d"></script>
|
|
|
|
|
|
</head>
|
|
<body>
|
|
<div class="cs">
|
|
<form method="post" action={{ url_for ("login_post", next=request.args.get("next")) }}>
|
|
<label for="email" >Dualis-Email: </label>
|
|
<input class="input" type="email" name="email" placeholder="Email-Adresse" autofocus="">
|
|
<label for="password">Dualis-Passwort:</label>
|
|
<input class="input" type="password" name="password" placeholder="Passwort">
|
|
<button class="button">Login</button>
|
|
</form>
|
|
</div>
|
|
</body>
|
|
</html>
|