You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
|
|
{% extends 'player_base.html' %}
|
|
|
|
{% import 'bootstrap/wtf.html' as wtf %}
|
|
|
|
|
|
|
|
{% block player_app_content %}
|
|
|
|
<div class="row">
|
|
|
|
<div class="col-xs-0 col-md-1"></div>
|
|
|
|
<div class="col-xs-8 col-md-4">
|
|
|
|
<h1>Catch Bunny</h1>
|
|
|
|
<form action="" method="post" class="form" role="form" enctype="multipart/form-data">
|
|
|
|
{{ form.hidden_tag() }}
|
|
|
|
{{ wtf.form_field(form.bunny) }}
|
|
|
|
{{ wtf.form_field(form.photo) }}
|
|
|
|
{{ wtf.form_field(form.submit, class='btn btn-primary') }}
|
|
|
|
<a href="{{ url_for('main.game_dashboard', game_name=game.name) }}"><button type="button" class="btn btn-warning">Back</button></a>
|
|
|
|
</form>
|
|
|
|
</div>
|
|
|
|
<div class="col-xs-0 col-md-7"></div>
|
|
|
|
</div>
|
|
|
|
{% endblock %}
|