15 lines
381 B
HTML
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 %}
|