Skip to content
Snippets Groups Projects
Commit 4c056ce4 authored by Joona Erkkilä's avatar Joona Erkkilä
Browse files

Upload New File

parent 136c63c4
No related branches found
No related tags found
No related merge requests found
{% extends 'layout.html' %}
{% block content %}
<html>
<head>
<title>Admin - Add Product</title>
</head>
<body>
<h1>Add Product</h1>
<form method="POST" action="/admin/add_product">
<input type="text" name="product_name" placeholder="Product Name" required><br>
<input type="number" name="price" placeholder="Price" step="0.01" required><br>
<input type="submit" value="Add Product">
</form>
</body>
</html>
{% endblock %}
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment