web-app-demos/apps/account/templates/login.html
2025-03-17 16:11:01 -06:00

26 lines
1 KiB
HTML

<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>${title}</title>
<link rel="stylesheet" type="text/css" href="/static/bootstrap/bootstrap.min.css">
<link rel="stylesheet" type="text/css" href="./static/css/login.css">
<link rel="shortcut icon" type="image/png" href="/static/favicon.png">
<link rel="shortcut icon" sizes="192x192" href="/static/favicon.png">
<link rel="apple-touch-icon" href="/static/favicon.png">
</head>
<body class="d-flex align-items-center py-4">
<main class="form-signin w-100 m-auto">
<form method="post" action="/log/in" autocomplete="off" id="login">
<h3 class="h3 mb-3 font-weight-normal text-center">${message}</h3>
<input type="password" id="password" name="password" class="form-control mb-3" placeholder="Password" required autofocus>
<input type="hidden" id="url" name="url" value="${url}">
<button class="btn btn-lg btn-primary w-100" type="submit">Sign in</button>
</form>
</main>
</body>
</html>