anonkun/templates/edit_quest.html

31 lines
792 B
HTML
Raw Normal View History

{% extends "base.html" %}
{% block title %}Edit {{ quest_title }}{% endblock %}
{% block content %}
<center><h1>{{ quest_title }}</h1></center>
<form method="post" action="{{ url_for('.edit_quest', quest_id=quest_id,) }}">
<table>
<tr>
<td>Quest Title:</td>
<td><input type="text" name="quest_title" value="{{ quest_title }}"></td>
</tr>
<tr>
<td>Visible:</td>
<td><input type="checkbox" name="visible" value="on"></td>
</tr>
<tr>
<td>Anonymous Name:</td>
<td><input type="text" name="anon_name" value="Anonymous"></td>
</tr>
<tr>
<td>Live:</td>
<td><input type="checkbox" name="live" value="off"></td>
</tr>
<tr>
<td>Live In:</td>
<td>Placeholder</td>
</tr>
</table>
<input type="submit">
</form>
{% endblock %}