/
var
/
www
/
html
/
boazapp
/
var
/
cache
/
prod
/
twig
/
af
/
Upload File
HOME
<?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; /* users/register.html.twig */ class __TwigTemplate_a744a08ca979d53e6c1d43d44612be243549fd7b0a2b4fd234824c0b2a061e82 extends Template { private $source; private $macros = []; public function __construct(Environment $env) { parent::__construct($env); $this->source = $this->getSourceContext(); $this->blocks = [ 'content' => [$this, 'block_content'], ]; } protected function doGetParent(array $context) { // line 1 return "base1.html.twig"; } protected function doDisplay(array $context, array $blocks = []) { $macros = $this->macros; $this->parent = $this->loadTemplate("base1.html.twig", "users/register.html.twig", 1); yield from $this->parent->unwrap()->yield($context, array_merge($this->blocks, $blocks)); } // line 5 public function block_content($context, array $blocks = []) { $macros = $this->macros; // line 6 yield " <div class=\"content\"> <div class=\"container-fluid\"> <div class=\"row\"> <div class=\"col-md-12\"> <div class=\"card\"> <div class=\"header\"> <h4 class=\"title\">Edit Cargo</h4> </div> <div class=\"content\"> <!-- <div id=\"chartPreferences\" class=\"ct-chart ct-perfect-fourth\"></div> --> <form action=\""; // line 16 yield $this->extensions['Symfony\Bridge\Twig\Extension\RoutingExtension']->getPath("register"); yield "\" method=\"post\"> <div class=\"forms\"> <div class=\"form-group\"> <label for=\"username\"><h4>Username:</h4></label> <input class=\"form-control\" type=\"text\" id=\"username\" name=\"username\"/> </div> <div class=\"form-group\"> <label for=\"password\"><h4>Password:</h4></label> <input class=\"form-control\" type=\"password\" id=\"password\" name=\"password\" /> </div> <div class=\"form-group\"> <label for=\"email\"><h4>Email:</h4></label> <input class=\"form-control\" type=\"text\" id=\"email\" name=\"email\"/> </div> <div class=\"form-group\"> <label for=\"telephone\"><h4>Telephone:</h4></label> <input class=\"form-control\" type=\"text\" id=\"telephone\" name=\"telephone\"/> </div> <div class=\"form-group\"> <label for=\"fullname\"><h4>Full Name:</h4></label> <input class=\"form-control\" type=\"text\" id=\"fullname\" name=\"fullname\"/> </div> <div class=\"form-group\"> <label for=\"Role\"><h4>Role:</h4></label> <select class=\"form-control\" name=\"role\" id=\"Role\"> <option value=\"REP\">REP</option> <option value=\"ADMIN\">ADMIN</option> <option value=\"MANAGEMENT\">MANAGEMENT</option> </select> </div> <button name=\"submit\" type=\"submit\" class=\"btn btn-default\">Register</button> </div> </form> <div class=\"footer\"> </div> </div> </div> </div> </div> </div> </div> "; return; yield ''; } /** * @codeCoverageIgnore */ public function getTemplateName() { return "users/register.html.twig"; } /** * @codeCoverageIgnore */ public function isTraitable() { return false; } /** * @codeCoverageIgnore */ public function getDebugInfo() { return array ( 63 => 16, 51 => 6, 47 => 5, 36 => 1,); } public function getSourceContext() { return new Source("", "users/register.html.twig", "/var/www/html/boazapp/templates/users/register.html.twig"); } }