22 lines
675 B
HTML
22 lines
675 B
HTML
{% extends "base.html" %}
|
|
{% block title %}Открыть заказ — {{ app_name }}{% endblock %}
|
|
|
|
{% block content %}
|
|
<section class="page-section narrow">
|
|
<div class="section-head">
|
|
<h2>Доступ к заказу {{ public_id }}</h2>
|
|
<p>Введите email, указанный при покупке</p>
|
|
</div>
|
|
{% if error %}
|
|
<p class="flash error">{{ error }}</p>
|
|
{% endif %}
|
|
<form method="post" action="/order/{{ public_id }}" class="stack-form">
|
|
<label>
|
|
Email
|
|
<input type="email" name="email" required />
|
|
</label>
|
|
<button class="btn btn-primary" type="submit">Открыть</button>
|
|
</form>
|
|
</section>
|
|
{% endblock %}
|