cancel button
[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  <div class="control-group well pastedata">
7    <label for="description">Description</label>
8    <input type="text" name="description" id="description" value="{{description}}"/>
9  </div>
10
11  {% include 'edit-file.htm' with {'file': file[1], 'fileid': 1} %}
12
13  <div class="well" style="text-align: right">
14   <button class="btn btn-primary" type="submit">
15    <i class="icon-check icon-white"></i>
16    Create
17   </button>
18  </div>
19
20 </form>
21 {% endblock %}