webcron/templates/security/login.html.twig

38 lines
1.7 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-05-26 13:09:13 +02:00
{{ encore_entry_link_tags('security.login') }}
2021-04-08 16:34:25 +02:00
2021-05-26 13:09:13 +02:00
{{ encore_entry_script_tags('security.login') }}
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-12 12:23:50 +02:00
<div class="mb-3">
2021-04-08 16:34:25 +02:00
<label for="name">Username</label>
2021-04-12 12:23:50 +02:00
<input type="text" name="name" class="form-control" id="name" placeholder="username">
2021-04-08 16:34:25 +02:00
</div>
2021-04-12 12:23:50 +02:00
<div class="mb-3">
2021-04-08 16:34:25 +02:00
<label for="passwd">Password</label>
2021-04-12 12:23:50 +02:00
<input type="password" name="passwd" class="form-control" id="passwd" placeholder="password">
2021-04-08 16:34:25 +02:00
</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>