553192aee59f1a602790d70892717a00fa6943fb998451029d5c7d7e73a1d9c6.php
2.7 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
<?php
use Twig\Environment;
use Twig\Error\LoaderError;
use Twig\Error\RuntimeError;
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;
/* install/step_1.twig */
class __TwigTemplate_4c297b6c38896feda5794f3cb7f06c3ad2036741a13f604b6b55e191db4ab7ef extends \Twig\Template
{
private $source;
private $macros = [];
public function __construct(Environment $env)
{
parent::__construct($env);
$this->source = $this->getSourceContext();
$this->parent = false;
$this->blocks = [
];
}
protected function doDisplay(array $context, array $blocks = [])
{
$macros = $this->macros;
// line 1
echo ($context["header"] ?? null);
echo "
<div class=\"container\">
<header>
<div class=\"row\">
<div class=\"col-sm-6\">
<h1 class=\"pull-left\">1<small>/4</small></h1>
<h3>";
// line 7
echo ($context["heading_title"] ?? null);
echo "<br>
<small>";
// line 8
echo ($context["text_step_1"] ?? null);
echo "</small></h3>
</div>
<div class=\"col-sm-6\">
<div id=\"logo\" class=\"pull-right hidden-xs\"><img src=\"view/image/logo.png\" alt=\"ocStore\" title=\"ocStore\" /></div>
</div>
</div>
</header>
<div class=\"row\">
<div class=\"col-sm-9\">
<form action=\"";
// line 17
echo ($context["action"] ?? null);
echo "\" method=\"post\" enctype=\"multipart/form-data\">
<div class=\"terms\">";
// line 18
echo ($context["text_terms"] ?? null);
echo "</div>
<div class=\"buttons\">
<div class=\"pull-right\">
<input type=\"submit\" value=\"";
// line 21
echo ($context["button_continue"] ?? null);
echo "\" class=\"btn btn-primary\" />
</div>
</div>
</form>
</div>
<div class=\"col-sm-3\">";
// line 26
echo ($context["column_left"] ?? null);
echo "</div>
</div>
</div>
";
// line 29
echo ($context["footer"] ?? null);
}
public function getTemplateName()
{
return "install/step_1.twig";
}
public function isTraitable()
{
return false;
}
public function getDebugInfo()
{
return array ( 86 => 29, 80 => 26, 72 => 21, 66 => 18, 62 => 17, 50 => 8, 46 => 7, 37 => 1,);
}
public function getSourceContext()
{
return new Source("", "install/step_1.twig", "");
}
}