You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
11 lines
386 B
11 lines
386 B
{% extends 'base.html' %}
|
|
|
|
{% block title %}Оплата лицензии{% endblock %}
|
|
|
|
{% block content %}
|
|
<h1>Оплатить лицензию</h1>
|
|
<form class="payform" action="{{ form.target }}" method="POST">
|
|
<p>{{ form.as_p }}</p>
|
|
<p><input type="submit" class="btn yellow-btn docs-btn payform__btn"value="Оплатить"></p>
|
|
</form>
|
|
{% endblock %}
|
|
|