use twitter bootstrap for layouting
[phorkie.git] / data / templates / index.htm
1 {% extends "base.htm" %}
2 {% block title %}New paste{% endblock %}
3
4 {% block content %}
5 <form method="post" action="/">
6  <p>
7   <label for="description">Description</label>
8   <input type="text" name="description" id="description" value="{{description}}"/>
9  </p>
10  <p>
11   <label for="filename_1">Filename</label>
12   <input type="text" name="file[1][name]" id="filename_1" value="{{ file[1]['name'] }}"/>
13  </p>
14  <p>
15   <label for="type_1">Type</label>
16   <select name="file[1][type]" id="type_1">
17    <option value="css">CSS</option>
18    <option value="php">PHP</option>
19    <option value="xml">XML</option>
20   </select>
21  </p>
22  <p>
23   <textarea name="file[1][content]" id="content_1" cols="80" rows="10">{{ file[1]['content'] }}</textarea>
24  </p>
25  <p>
26   <input type="submit" value="Go"/>
27  </p>
28 </form>
29 {% endblock %}