Add admin panel, cart, checkout, and digital key delivery

Co-authored-by: Cursor <cursoragent@cursor.com>
This commit is contained in:
orohi
2026-07-25 05:32:05 +03:00
co-authored by Cursor
parent 08cc4b0f1b
commit 54eaff4c70
32 changed files with 1982 additions and 105 deletions
+25
View File
@@ -0,0 +1,25 @@
{% extends "base.html" %}
{% block title %}Мой заказ — {{ app_name }}{% endblock %}
{% block content %}
<section class="page-section narrow">
<div class="section-head">
<h2>Найти заказ</h2>
<p>Введите номер заказа и email</p>
</div>
{% if error %}
<p class="flash error">{{ error }}</p>
{% endif %}
<form method="post" action="/lookup" class="stack-form">
<label>
Номер заказа
<input type="text" name="public_id" required placeholder="например A1B2C3D4" />
</label>
<label>
Email
<input type="email" name="email" required />
</label>
<button class="btn btn-primary" type="submit">Найти</button>
</form>
</section>
{% endblock %}