26 lines
759 B
HTML
26 lines
759 B
HTML
{% 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 %}
|