szoe-pontok/static/admin/add/index.html

28 lines
744 B
HTML
Raw Normal View History

2024-10-11 13:58:12 +00:00
<!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>