2018-06-18 22:13:49 -04:00
|
|
|
{% extends "base.html" %}
|
|
|
|
{% block title %}Start a new quest{% endblock %}
|
|
|
|
{% block content %}
|
|
|
|
<h1>New Quest</h1>
|
2018-06-21 09:06:23 -04:00
|
|
|
<form method="post" action="{{ url_for('.create_quest') }}">
|
2018-06-18 22:13:49 -04:00
|
|
|
<input type="text" placeholder="Quest Title" name="quest_title" maxlength="300" required/><br/>
|
|
|
|
<textarea id="create_textarea" name="quest_body"></textarea>
|
|
|
|
<input type="submit" name="submit" value="Submit"/>
|
|
|
|
</form>
|
|
|
|
{% endblock %}
|