webcron/templates/security/login.html.twig

41 lines
2.1 KiB
Twig
Raw Normal View History

2017-04-14 15:58:09 +02:00
<!doctype html>
<html>
<head>
<meta name="viewport" content="width=device-width, initial-scale=1">
2017-04-15 14:13:00 +02:00
<title>Webcron management :: Log in</title>
2021-04-08 16:34:25 +02:00
<link href="https://cdn.jsdelivr.net/npm/bootstrap@5.0.0-beta3/dist/css/bootstrap.min.css" rel="stylesheet" integrity="sha384-eOJMYsd53ii+scO/bJGFsiCZc+5NDVN2yr8+0RDqr0Ql0h+rP48ckxlpbzKgwra6" crossorigin="anonymous">
2021-04-06 22:44:39 +02:00
<link rel="stylesheet" href="/public/css/site.css">
2021-04-08 16:34:25 +02:00
<script src="https://cdn.jsdelivr.net/npm/bootstrap@5.0.0-beta3/dist/js/bootstrap.bundle.min.js" integrity="sha384-JEW9xMcG8R+pH31jmWH6WWP0WintQrMb4s7ZOdauHnUtxwoG2vI5DkLtS3qm9Ekf" crossorigin="anonymous"></script>
2021-04-07 13:31:57 +02:00
<script src="/js/site.js" type="text/javascript"></script>
2017-04-14 15:58:09 +02:00
</head>
<body>
2021-04-08 16:34:25 +02:00
<div class="container-fluid py-3">
<div class="row justify-content-md-center">
<div class="col-md-4 col-xs-12">
{{ include('flashes.html.twig') }}
<h1>Webcron management</h1>
<form class="form-horizontal" method="post" action="{{ path('login_check') }}">
2017-04-14 15:58:09 +02:00
2021-04-08 16:34:25 +02:00
<div class="form-floating mb-3">
<input type="text" name="name" class="form-control" id="name" placeholder="username">
<label for="name">Username</label>
</div>
<div class="form-floating mb-3">
<input type="password" name="passwd" class="form-control" id="passwd" placeholder="password">
<label for="passwd">Password</label>
</div>
<div class="form-check mb-3">
<input type="checkbox" name="autologin" id="autologin" value="autologin" class="form-check-input">
<label class="from-check-label" for="autologin">Remember, remember</label>
</div>
<button type="submit" class="btn btn-outline-primary">Submit</button>
</form>
2017-05-12 09:35:06 +02:00
</div>
2021-04-08 16:34:25 +02:00
</div>
2017-04-14 15:58:09 +02:00
</div>
</body>
</html>