Advertisement
Guest User

Untitled

a guest
Sep 29th, 2016
62
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 0.44 KB | None | 0 0
  1. create author twig
  2.  
  3. {% extends "::base.html.twig" %}
  4.  
  5. {% block title %}CodersLabBundle:Author:createAuthor{% endblock %}
  6.  
  7. {% block body %}
  8.     <form method="POST" action="{{ path("createAuthor")}}">
  9.        Name: <input type="text" name="name"/> <br />
  10.        Surname: <input type="text" name="surname"/> <br />
  11.        Description: <input type="text" name="description"/> <br />
  12.         <input type="submit"/>
  13.     </form>
  14. {% endblock %}
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement