tmtd/templates/task/create_task.html
2022-05-02 18:57:47 +02:00

21 lines
555 B
HTML

{% extends "base.html" %}
{% block content %}
{% include "navbar.html" %}
<form action="/api/task/create" method="post">
<label for="title">Title</label><br>
<input type="text" id="title" name="title" style="width:fit-content"><br>
<label for="assignee">Assignee</label><br>
<input type="text" id="assignee" name="assignee"><br>
<label for="description">Description</label><br>
<textarea rows="3" cols="30" name="description" id="description"><br>
<input type="submit" value="create"><br>
</form>
{% endblock content %}