mail-account-admin/templates/login.html.twig

45 lines
1.1 KiB
Twig

<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8"/>
<title>Login - MailAccountAdmin</title>
<meta name="viewport" content="width=device-width, initial-scale=1"/>
<link rel="stylesheet" href="/static/style.css"/>
</head>
<body>
<header>
<h1>MailAccountAdmin</h1>
</header>
<main class="login_page">
<h2>Login</h2>
<form action="/login" method="POST">
{% if error is defined %}
<div class="error">{{ error }}</div>
{% endif %}
<table>
<tr>
<td><label for="username">Username</label></td>
<td><input type="text" id="username" name="username"></td>
</tr>
<tr>
<td><label for="password">Password</label></td>
<td><input type="password" id="password" name="password"></td>
</tr>
<tr>
<td></td>
<td>
<button type="submit">Login</button>
</td>
</tr>
</table>
</form>
</main>
</body>
</html>