Files
pillar/attract/application/templates/shots/create.html

24 lines
655 B
HTML
Raw Normal View History

2014-04-20 22:55:36 +02:00
{% extends 'layout.html' %}
{% block body %}
<div class="col-md-9">
<h2>Create shot</h2>
<div class="row">
<div class="col-md-6">
<form method="POST" action="{{url_for('shots.create')}}">
{{ form.hidden_tag() }}
<div class="form-group">
{{ form.name.label }}
{{ form.name(size=20, class='form-control') }}
</div>
<div class="form-group">
{{ form.description.label }}
{{ form.description(size=20, class='form-control') }}
</div>
<input class="btn btn-default" type="submit" value="Create Shot">
</form>
</div>
</div>
</div>
{% endblock %}