change "delete task" button from blue to red, scary color for scary button.

This commit is contained in:
2022-11-14 18:50:50 -05:00
parent 38b3cf9525
commit 1eb56c6c99

View File

@@ -21,7 +21,7 @@
<form method="POST"
action="{{url_for('delete_task',
task_id=task.id) }}">
<input class="btn btn-primary" type="submit" value="Delete Task"
<input class="btn btn-danger" type="submit" value="Delete Task"
onclick="return confirm('Are you sure you want to delete this task?')">
</form>
</div>