<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1">
<!-- The above 3 meta tags *must* come first in the head; any other head content must come *after* these tags -->
<meta name="description" content="">
<meta name="author" content="">
<link rel="icon" href="{{ asset('favicon.ico') }}">
<title>FIBKIT - {% block title %}panel logowania{% endblock %}</title>
{% block stylesheets %}
<link href="{{ asset('css/bootstrap5.min.css') }}" rel="stylesheet"/>
<link href="{{ asset('css/auth.css') }}" rel="stylesheet"/>
{% endblock %}
{% block head %}
{% endblock %}
</head>
<body class="text-center">
{% block body %}{% endblock %}
{% block javascripts %}
<script>
document.addEventListener('click', function (event) {
var toggle = event.target.closest('.js-password-toggle');
if (!toggle) {
return;
}
var input = document.getElementById(toggle.dataset.target);
if (!input) {
return;
}
var isHidden = input.getAttribute('type') === 'password';
input.setAttribute('type', isHidden ? 'text' : 'password');
toggle.setAttribute('aria-pressed', isHidden ? 'true' : 'false');
});
</script>
{% endblock %}
</body>
</html>