first commit
This commit is contained in:
17
templates/update.html
Normal file
17
templates/update.html
Normal file
@ -0,0 +1,17 @@
|
||||
{% extends 'base.html' %}
|
||||
|
||||
{% block head %}
|
||||
<title>Task Master</title>
|
||||
{% endblock %}
|
||||
|
||||
|
||||
{% block body %}
|
||||
<div class="content">
|
||||
<h1 style="text-align: center">Update Task</h1>
|
||||
|
||||
<form action="/update/{{task.id}}" method="POST">
|
||||
<input type="text" name="content" id="content" placeholder="Task name" value="{{task.content}}">
|
||||
<input type="submit" value="Update Task">
|
||||
</form>
|
||||
</div>
|
||||
{% endblock %}
|
||||
Reference in New Issue
Block a user