Add admin panel, cart, checkout, and digital key delivery
Co-authored-by: Cursor <cursoragent@cursor.com>
This commit is contained in:
@@ -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 %}
|
||||
Reference in New Issue
Block a user