comparison templates/convert.html @ 17:75d5d18e7d52

Add bootstrap for css formating
author Björn Ricks <bjoern.ricks@intevation.de>
date Mon, 29 Sep 2014 14:17:41 +0200
parents f4920ab1d27c
children 9d65de2ebe22
comparison
equal deleted inserted replaced
16:f4920ab1d27c 17:75d5d18e7d52
1 {% extends 'base.html' %} 1 {% extends 'base.html' %}
2 2
3 {% block content %} 3 {% block content %}
4 <form action="" method="POST" enctype="multipart/form-data"> 4 <h1>Convert</h1>
5 <div> 5
6 <label>Format</label> 6 <form role="form" action="" method="POST" enctype="multipart/form-data">
7 <input type="text" placeholder="Format" name="format"></input> 7 <div class="form-group">
8 <label for="format">Format</label>
9 <input id="format" type="text" placeholder="Format" name="format" class="form-control">
8 </div> 10 </div>
9 <div> 11 <div class="form-group">
10 <label>File</label> 12 <label for="file" >File</label>
11 <input type="file" name="file"></input> 13 <input id="file" type="file" name="file">
12 </div> 14 </div>
13 <input type="submit" value="Convert"></input> 15 <button class="btn btn-default" type="submit">Convert</button>
14 </form> 16 </form>
15 {% endblock %} 17 {% endblock %}
This site is hosted by Intevation GmbH (Datenschutzerklärung und Impressum | Privacy Policy and Imprint)