implement addtask and addusers to a task features

This commit is contained in:
2024-01-16 14:44:06 +01:00
parent d81ff0592e
commit 9f2817fcf8
5 changed files with 64 additions and 8 deletions

View File

@@ -0,0 +1,20 @@
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>Add new task</title>
<link rel="stylesheet" href="/static/style.css">
</head>
<body>
<main>
<form action="/addtask" method="POST">
<label for="taskname">taskname</label>
<input type="text" name="taskname" id="taskname" required>
<label for="taskdesc">taskdesc</label>
<input type="text" name="taskdesc" id="taskdesc" required>
<button> Submit </button>
</form>
</main>
</body>
</html>