anonkun/templates/create_quest.html

14 lines
382 B
HTML
Raw Normal View History

2018-06-16 03:17:00 -04:00
<!DOCTYPE html>
<html>
<head>
<title>Make a new quest</title>
</head>
<body>
<form method="post" action="{{ url_for('create_quest') }}">
<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>
</body>
</html>