28 lines
744 B
HTML
28 lines
744 B
HTML
<!DOCTYPE html>
|
|
<html lang="en">
|
|
|
|
<head>
|
|
<meta charset="UTF-8">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
|
<title>Add task</title>
|
|
<script src="/js/config.js"></script>
|
|
<script src="/js/utils.js"></script>
|
|
<script defer src="/js/add.js"></script>
|
|
</head>
|
|
|
|
<body>
|
|
<form id="add_form">
|
|
<label for="recipient">Recipient</label>
|
|
<input type="text" id="recipient" name="recipient">
|
|
<br>
|
|
<label for="description">Description</label>
|
|
<input type="text" id="description" name="description">
|
|
<br>
|
|
<label for="points">Points</label>
|
|
<input type="number" value="0" id="points" name="points">
|
|
<br>
|
|
<input type="button" value="Add" onclick="add()">
|
|
</form>
|
|
</body>
|
|
|
|
</html> |