65 lines
2.6 KiB
Twig
65 lines
2.6 KiB
Twig
|
|
<!doctype html>
|
||
|
|
<html lang="en">
|
||
|
|
<head>
|
||
|
|
<meta charset="utf-8">
|
||
|
|
<meta http-equiv="X-UA-Compatible" content="IE=edge">
|
||
|
|
<title>{% block title %}TollTerelo Admin - Login{% endblock %}</title>
|
||
|
|
<meta content="width=device-width, initial-scale=1, maximum-scale=1, user-scalable=no" name="viewport">
|
||
|
|
{% block stylesheets %}
|
||
|
|
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/font-awesome/4.5.0/css/font-awesome.min.css">
|
||
|
|
<link rel="stylesheet" href="https://code.ionicframework.com/ionicons/2.0.1/css/ionicons.min.css">
|
||
|
|
|
||
|
|
{% stylesheets filter='cssrewrite'
|
||
|
|
'@JotunheimrAdminBundle/Resources/public/js/vendor/bootstrap/css/bootstrap.min.css'
|
||
|
|
'@JotunheimrAdminBundle/Resources/public/css/s7Admin.css' %}
|
||
|
|
<link rel="stylesheet" media="screen" href="{{ asset_url }}"/>
|
||
|
|
{% endstylesheets %}
|
||
|
|
{% endblock %}
|
||
|
|
<link rel="icon" type="image/x-icon" href="{{ asset('favicon.ico') }}"/>
|
||
|
|
<!-- HTML5 Shim and Respond.js IE8 support of HTML5 elements and media queries -->
|
||
|
|
<!-- WARNING: Respond.js doesn't work if you view the page via file:// -->
|
||
|
|
<!--[if lt IE 9]>
|
||
|
|
<script src="https://oss.maxcdn.com/html5shiv/3.7.3/html5shiv.min.js"></script>
|
||
|
|
<script src="https://oss.maxcdn.com/respond/1.4.2/respond.min.js"></script>
|
||
|
|
<![endif]-->
|
||
|
|
</head>
|
||
|
|
|
||
|
|
<body class="hold-transition {% if last_username|length %}lockscreen{% else %}login-page{% endif %}">
|
||
|
|
|
||
|
|
{#<div>#}
|
||
|
|
{#{% if is_granted("IS_AUTHENTICATED_REMEMBERED") %}#}
|
||
|
|
{#{{ 'layout.logged_in_as'|trans({'%username%': app.user.username}, 'FOSUserBundle') }} |#}
|
||
|
|
{#<a href="{{ path('fos_user_security_logout') }}">#}
|
||
|
|
{#{{ 'layout.logout'|trans({}, 'FOSUserBundle') }}#}
|
||
|
|
{#</a>#}
|
||
|
|
{#{% else %}#}
|
||
|
|
{#<a href="{{ path('fos_user_security_login') }}">{{ 'layout.login'|trans({}, 'FOSUserBundle') }}</a>#}
|
||
|
|
{#{% endif %}#}
|
||
|
|
{#</div>#}
|
||
|
|
|
||
|
|
{% if app.request.hasPreviousSession %}
|
||
|
|
{% for type, messages in app.session.flashbag.all() %}
|
||
|
|
{% for message in messages %}
|
||
|
|
<div class="flash-{{ type }}">
|
||
|
|
{{ message }}
|
||
|
|
</div>
|
||
|
|
{% endfor %}
|
||
|
|
{% endfor %}
|
||
|
|
{% endif %}
|
||
|
|
|
||
|
|
<div>
|
||
|
|
{% block fos_user_content %}
|
||
|
|
{% endblock fos_user_content %}
|
||
|
|
</div>
|
||
|
|
|
||
|
|
{% block javascripts %}
|
||
|
|
{% javascripts
|
||
|
|
'@JotunheimrAdminBundle/Resources/public/js/vendor/plugins/jQuery/jQuery-2.1.4.min.js'
|
||
|
|
'@JotunheimrAdminBundle/Resources/public/js/vendor/bootstrap/js/bootstrap.min.js' %}
|
||
|
|
<script type="text/javascript" src="{{ asset_url }}"></script>
|
||
|
|
{% endjavascripts %}
|
||
|
|
{% endblock %}
|
||
|
|
|
||
|
|
</body>
|
||
|
|
</html>
|