<?php
use Twig\Environment;
use Twig\Error\LoaderError;
use Twig\Error\RuntimeError;
use Twig\Extension\CoreExtension;
use Twig\Extension\SandboxExtension;
use Twig\Markup;
use Twig\Sandbox\SecurityError;
use Twig\Sandbox\SecurityNotAllowedTagError;
use Twig\Sandbox\SecurityNotAllowedFilterError;
use Twig\Sandbox\SecurityNotAllowedFunctionError;
use Twig\Source;
use Twig\Template;
use Twig\TemplateWrapper;
/* security/login.html.twig */
class __TwigTemplate_1e67a0481ca5c4ee06761b97ef3e0e70 extends Template
{
private Source $source;
/**
* @var array<string, Template>
*/
private array $macros = [];
public function __construct(Environment $env)
{
parent::__construct($env);
$this->source = $this->getSourceContext();
$this->blocks = [
'body' => [$this, 'block_body'],
];
}
protected function doGetParent(array $context): bool|string|Template|TemplateWrapper
{
// line 1
return "base.html.twig";
}
protected function doDisplay(array $context, array $blocks = []): iterable
{
$macros = $this->macros;
$__internal_5a27a8ba21ca79b61932376b2fa922d2 = $this->extensions["Symfony\\Bundle\\WebProfilerBundle\\Twig\\WebProfilerExtension"];
$__internal_5a27a8ba21ca79b61932376b2fa922d2->enter($__internal_5a27a8ba21ca79b61932376b2fa922d2_prof = new \Twig\Profiler\Profile($this->getTemplateName(), "template", "security/login.html.twig"));
$__internal_6f47bbe9983af81f1e7450e9a3e3768f = $this->extensions["Symfony\\Bridge\\Twig\\Extension\\ProfilerExtension"];
$__internal_6f47bbe9983af81f1e7450e9a3e3768f->enter($__internal_6f47bbe9983af81f1e7450e9a3e3768f_prof = new \Twig\Profiler\Profile($this->getTemplateName(), "template", "security/login.html.twig"));
$this->parent = $this->loadTemplate("base.html.twig", "security/login.html.twig", 1);
yield from $this->parent->unwrap()->yield($context, array_merge($this->blocks, $blocks));
$__internal_5a27a8ba21ca79b61932376b2fa922d2->leave($__internal_5a27a8ba21ca79b61932376b2fa922d2_prof);
$__internal_6f47bbe9983af81f1e7450e9a3e3768f->leave($__internal_6f47bbe9983af81f1e7450e9a3e3768f_prof);
}
// line 2
/**
* @return iterable<null|scalar|\Stringable>
*/
public function block_body(array $context, array $blocks = []): iterable
{
$macros = $this->macros;
$__internal_5a27a8ba21ca79b61932376b2fa922d2 = $this->extensions["Symfony\\Bundle\\WebProfilerBundle\\Twig\\WebProfilerExtension"];
$__internal_5a27a8ba21ca79b61932376b2fa922d2->enter($__internal_5a27a8ba21ca79b61932376b2fa922d2_prof = new \Twig\Profiler\Profile($this->getTemplateName(), "block", "body"));
$__internal_6f47bbe9983af81f1e7450e9a3e3768f = $this->extensions["Symfony\\Bridge\\Twig\\Extension\\ProfilerExtension"];
$__internal_6f47bbe9983af81f1e7450e9a3e3768f->enter($__internal_6f47bbe9983af81f1e7450e9a3e3768f_prof = new \Twig\Profiler\Profile($this->getTemplateName(), "block", "body"));
// line 3
yield " <div class=\"login-container\">
<!-- Page container -->
<div class=\"page-container\">
<!-- Page content -->
<div class=\"page-content\">
<!-- Main content -->
<div class=\"content-wrapper\">
<!-- Content area -->
<div class=\"content\">
<!-- Simple login form -->
<form action=\"";
// line 17
yield $this->extensions['Symfony\Bridge\Twig\Extension\RoutingExtension']->getPath("login");
yield "\" method=\"post\" class=\"form-validate\">
<div class=\"panel panel-body login-form\" style=\"background-color: #749CB0\">
<div class=\"text-center\">
<div class=\"row\">
<img src=\"";
// line 21
yield $this->env->getRuntime('Twig\Runtime\EscaperRuntime')->escape($this->extensions['Symfony\Bridge\Twig\Extension\AssetExtension']->getAssetUrl("global_assets/images/01_fra_logo_white.png"), "html", null, true);
yield "\" style=\"width: 30%; float: right;;\">
</div>
<div class=\"border-slate-300 text-slate-300\"><img
src=\"";
// line 24
yield $this->env->getRuntime('Twig\Runtime\EscaperRuntime')->escape($this->extensions['Symfony\Bridge\Twig\Extension\AssetExtension']->getAssetUrl("global_assets/images/01_scorebox_logo_white.png"), "html", null, true);
yield "\" style=\"width: 80%\"></div>
<h5 class=\"content-group\" style=\"color:#ffffff; margin-top:20px;\">";
// line 25
yield $this->env->getRuntime('Twig\Runtime\EscaperRuntime')->escape($this->extensions['Symfony\Bridge\Twig\Extension\TranslationExtension']->trans("login.login_to_your_account"), "html", null, true);
yield "
<small class=\"display-block\" style=\"color:#ffffff\">";
// line 26
yield $this->env->getRuntime('Twig\Runtime\EscaperRuntime')->escape($this->extensions['Symfony\Bridge\Twig\Extension\TranslationExtension']->trans("login.description"), "html", null, true);
yield "</small>
</h5>
</div>
<div class=\"form-group ";
// line 30
if ((isset($context["error"]) || array_key_exists("error", $context) ? $context["error"] : (function () { throw new RuntimeError('Variable "error" does not exist.', 30, $this->source); })())) {
yield " has-error ";
}
yield " has-feedback has-feedback-left\" style=\"color: #749CB0\">
<input type=\"text\" class=\"form-control\" required=\"required\"
placeholder=\"";
// line 32
yield $this->env->getRuntime('Twig\Runtime\EscaperRuntime')->escape($this->extensions['Symfony\Bridge\Twig\Extension\TranslationExtension']->trans("email"), "html", null, true);
yield "\"
name=\"_username\"
value=\"";
// line 34
yield $this->env->getRuntime('Twig\Runtime\EscaperRuntime')->escape((isset($context["last_username"]) || array_key_exists("last_username", $context) ? $context["last_username"] : (function () { throw new RuntimeError('Variable "last_username" does not exist.', 34, $this->source); })()), "html", null, true);
yield "\">
<div class=\"form-control-feedback\">
<i class=\"icon-paperplane text-muted\" style=\"color:#749CB0\"></i>
</div>
</div>
<div class=\"form-group ";
// line 40
if ((isset($context["error"]) || array_key_exists("error", $context) ? $context["error"] : (function () { throw new RuntimeError('Variable "error" does not exist.', 40, $this->source); })())) {
yield " has-error ";
}
yield " has-feedback has-feedback-left\">
<input type=\"password\" class=\"form-control\" required=\"required\"
placeholder=\"";
// line 42
yield $this->env->getRuntime('Twig\Runtime\EscaperRuntime')->escape($this->extensions['Symfony\Bridge\Twig\Extension\TranslationExtension']->trans("password"), "html", null, true);
yield "\"
name=\"_password\">
<div class=\"form-control-feedback\">
<i class=\"icon-lock2 text-muted\" style=\"color:#749CB0;\"></i>
</div>
</div>
";
// line 48
if ((isset($context["error"]) || array_key_exists("error", $context) ? $context["error"] : (function () { throw new RuntimeError('Variable "error" does not exist.', 48, $this->source); })())) {
// line 49
yield " <div class=\"form-group has-error\">
<span class=\"help-block\">
<ul class=\"list-unstyled\">
<li><span class=\"glyphicon glyphicon-exclamation-sign\"></span> ";
// line 52
yield $this->env->getRuntime('Twig\Runtime\EscaperRuntime')->escape($this->extensions['Symfony\Bridge\Twig\Extension\TranslationExtension']->trans(CoreExtension::getAttribute($this->env, $this->source, (isset($context["error"]) || array_key_exists("error", $context) ? $context["error"] : (function () { throw new RuntimeError('Variable "error" does not exist.', 52, $this->source); })()), "messageKey", [], "any", false, false, false, 52), [], "validators"), "html", null, true);
yield "</li>
</ul>
</span>
</div>
";
}
// line 57
yield "
<div class=\"form-group\">
<button type=\"submit\" class=\"btn btn-primary btn-block\">";
// line 59
yield $this->env->getRuntime('Twig\Runtime\EscaperRuntime')->escape($this->extensions['Symfony\Bridge\Twig\Extension\TranslationExtension']->trans("signIn"), "html", null, true);
yield "<i
class=\"icon-circle-right2 position-right\"></i></button>
</div>
<div class=\"text-center\">
<a href=\"";
// line 63
yield $this->extensions['Symfony\Bridge\Twig\Extension\RoutingExtension']->getPath("resetPassword");
yield "\" style=\"color:white\">";
yield $this->env->getRuntime('Twig\Runtime\EscaperRuntime')->escape($this->extensions['Symfony\Bridge\Twig\Extension\TranslationExtension']->trans("forgotPassword.title"), "html", null, true);
yield "</a>
</div>
</div>
</form>
<!-- /simple login form -->
<!-- Footer -->
<div class=\"footer text-muted text-center\">
";
// line 72
yield from $this->loadTemplate("includes/_footer.html.twig", "security/login.html.twig", 72)->unwrap()->yield($context);
// line 73
yield " </div>
<!-- /footer -->
</div>
<!-- /content area -->
</div>
<!-- /main content -->
</div>
<!-- /page content -->
</div>
</div>
";
$__internal_6f47bbe9983af81f1e7450e9a3e3768f->leave($__internal_6f47bbe9983af81f1e7450e9a3e3768f_prof);
$__internal_5a27a8ba21ca79b61932376b2fa922d2->leave($__internal_5a27a8ba21ca79b61932376b2fa922d2_prof);
yield from [];
}
/**
* @codeCoverageIgnore
*/
public function getTemplateName(): string
{
return "security/login.html.twig";
}
/**
* @codeCoverageIgnore
*/
public function isTraitable(): bool
{
return false;
}
/**
* @codeCoverageIgnore
*/
public function getDebugInfo(): array
{
return array ( 199 => 73, 197 => 72, 183 => 63, 176 => 59, 172 => 57, 164 => 52, 159 => 49, 157 => 48, 148 => 42, 141 => 40, 132 => 34, 127 => 32, 120 => 30, 113 => 26, 109 => 25, 105 => 24, 99 => 21, 92 => 17, 76 => 3, 63 => 2, 40 => 1,);
}
public function getSourceContext(): Source
{
return new Source("{% extends 'base.html.twig' %}
{% block body %}
<div class=\"login-container\">
<!-- Page container -->
<div class=\"page-container\">
<!-- Page content -->
<div class=\"page-content\">
<!-- Main content -->
<div class=\"content-wrapper\">
<!-- Content area -->
<div class=\"content\">
<!-- Simple login form -->
<form action=\"{{ path('login') }}\" method=\"post\" class=\"form-validate\">
<div class=\"panel panel-body login-form\" style=\"background-color: #749CB0\">
<div class=\"text-center\">
<div class=\"row\">
<img src=\"{{ asset('global_assets/images/01_fra_logo_white.png') }}\" style=\"width: 30%; float: right;;\">
</div>
<div class=\"border-slate-300 text-slate-300\"><img
src=\"{{ asset('global_assets/images/01_scorebox_logo_white.png') }}\" style=\"width: 80%\"></div>
<h5 class=\"content-group\" style=\"color:#ffffff; margin-top:20px;\">{{ 'login.login_to_your_account'|trans }}
<small class=\"display-block\" style=\"color:#ffffff\">{{ 'login.description'|trans }}</small>
</h5>
</div>
<div class=\"form-group {% if error %} has-error {% endif %} has-feedback has-feedback-left\" style=\"color: #749CB0\">
<input type=\"text\" class=\"form-control\" required=\"required\"
placeholder=\"{{ 'email'|trans }}\"
name=\"_username\"
value=\"{{ last_username }}\">
<div class=\"form-control-feedback\">
<i class=\"icon-paperplane text-muted\" style=\"color:#749CB0\"></i>
</div>
</div>
<div class=\"form-group {% if error %} has-error {% endif %} has-feedback has-feedback-left\">
<input type=\"password\" class=\"form-control\" required=\"required\"
placeholder=\"{{ 'password'|trans }}\"
name=\"_password\">
<div class=\"form-control-feedback\">
<i class=\"icon-lock2 text-muted\" style=\"color:#749CB0;\"></i>
</div>
</div>
{% if error %}
<div class=\"form-group has-error\">
<span class=\"help-block\">
<ul class=\"list-unstyled\">
<li><span class=\"glyphicon glyphicon-exclamation-sign\"></span> {{ error.messageKey|trans({},'validators') }}</li>
</ul>
</span>
</div>
{% endif %}
<div class=\"form-group\">
<button type=\"submit\" class=\"btn btn-primary btn-block\">{{ 'signIn'|trans }}<i
class=\"icon-circle-right2 position-right\"></i></button>
</div>
<div class=\"text-center\">
<a href=\"{{ path('resetPassword') }}\" style=\"color:white\">{{ 'forgotPassword.title'|trans }}</a>
</div>
</div>
</form>
<!-- /simple login form -->
<!-- Footer -->
<div class=\"footer text-muted text-center\">
{% include 'includes/_footer.html.twig' %}
</div>
<!-- /footer -->
</div>
<!-- /content area -->
</div>
<!-- /main content -->
</div>
<!-- /page content -->
</div>
</div>
{% endblock %}
", "security/login.html.twig", "/var/www/templates/security/login.html.twig");
}
}