Add firsts templates

This commit is contained in:
Andros Fenollosa
2017-08-01 09:22:15 +02:00
parent e1725ab8fb
commit a3f3b49b2c
4 changed files with 37 additions and 0 deletions

View File

@ -0,0 +1,13 @@
{% extends 'layouts/master.html' %}
{% block title %}Buscador{% endblock %}
{% block body %}
<h1>Buscador</h1>
<div class="row">
<div class="col-xs-12">
<form >
<input type="text" id="nombre" class="form-control" name="nombre" placeholder="Buscar...">
<input type="submit" class="form-control" value="Buscar">
</form>
</div>
</div>
{% endblock %}