Files
flask-practice/app/templates/add_item.html
Nico Melone 7ead45abca test update
2025-12-30 13:17:29 -06:00

15 lines
381 B
HTML

{% extends "base.html" %}
{% block content %}
<h1>Add a New Item</h1>
<form method="post">
<label for="name">Name:</label>
<input type="text" id="name" name="name" required>
<br>
<label for="description">Descriptions:</label>
<textarea id="description" name="description"></textarea>
<br>
<button type="submit">Add Item</button>
</form>
{% endblock %}