14 lines
388 B
HTML
14 lines
388 B
HTML
<!DOCTYPE html>
|
|
<html>
|
|
<head>
|
|
<title>Make a new quest</title>
|
|
</head>
|
|
<body>
|
|
<form method="post" action="{{ url_for('views.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>
|