{% extends '@nucleus/partials/particle.html.twig' %} {% block particle %} {% if config.plugins.login.enabled and config.plugins.login.route %} {% if grav.user.authenticated %}

{{ 'PLUGIN_LOGIN.WELCOME'|t }} {{ grav.user.fullname ?: grav.user.username }}

{{ 'PLUGIN_LOGIN.BTN_LOGOUT'|t }} {% else %}
{% if grav.twig.plugins_hooked_loginPage %} {% for label in grav.twig.plugins_hooked_loginPage %} {% include label %} {% endfor %} {% endif %} {% for field in [{ name: 'username', type: 'text', id: 'username', placeholder: 'Username', label: 'PLUGIN_LOGIN.USERNAME', autofocus: true }, { name: 'password', type: 'password', id: 'password', placeholder: 'Password', label: 'PLUGIN_LOGIN.PASSWORD' }] %} {% if field.type %}
{% include ["forms/fields/#{field.type}/#{field.type}.html.twig", 'forms/fields/text/text.html.twig'] %}
{% endif %} {% endfor %}
{% if config.plugins.login.rememberme.enabled %}
{% endif %} {{ 'PLUGIN_LOGIN.BTN_FORGOT'|t }}
{{ nonce_field('login-form', 'login-form-nonce')|raw }}
{% endif %} {% endif %} {% endblock %}