new.html.twig
683 Bytes
{% extends 'UBVPrincipalBundle::inicio.html.twig' %}
{% block contenido %}
<div class="row">
<div class="col-lg-12">
<div class="portlet">
<div class="portlet-header">
<div class="caption">Registro Usuario</div>
<form action="{{ path('proyecto_new') }}" id="form_proyecto" novalidate method="POST" {{ form_enctype(form) }}>
</div>
<h1>Saber creation</h1>
{{ form_start(form) }}
{{ form_widget(form) }}
<input type="submit" value="Create" />
{{ form_end(form) }}
<ul>
<li>
<a href="{{ path('saber_index') }}">Back to the list</a>
</li>
</ul>
{% endblock %}