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.
73 lines
3.3 KiB
73 lines
3.3 KiB
<!DOCTYPE html>
|
|
<html lang="ru">
|
|
<head>
|
|
<meta http-equiv="X-UA-Compatible" content="IE=edge">
|
|
<title>{{ design.name }}. Оплата счета.</title>
|
|
<meta http-equiv="Content-Type" content="text/html;charset=UTF-8">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1, maximum-scale=1">
|
|
<link rel="shortcut icon" href="/static/img/favicon.ico" type="image/x-icon">
|
|
<link href="http://fonts.googleapis.com/css?family=Open+Sans:400italic,400,300,600&subset=latin,cyrillic-ext" rel="stylesheet" type="text/css">
|
|
<link rel="stylesheet" href="/static/css/bootstrap.min.css">
|
|
<link rel="stylesheet" href="/static/css/bootstrap-datepicker.min.css" type="text/css" />
|
|
<link rel="stylesheet" href="/static/css/bootstrap-datepicker.standalone.min.css" type="text/css" />
|
|
{% block head %}
|
|
{% endblock %}
|
|
</head>
|
|
<body style="background-color: {{ design.background }};">
|
|
|
|
<div class="col-xs-12" style=" margin: 0 auto;
|
|
text-align: center;
|
|
margin-bottom: 20px;
|
|
margin-top: 20px;">
|
|
<a href="/"><img src="{{ design.logo.url }}" style=" max-width: 200px;"></a>
|
|
<img src="/static/img/preloader.gif" style="display: none;width: 24px; height: 24px; margin-left: 10px;margin-top: -8px;" name="partner_request_progress">
|
|
|
|
</div>
|
|
<div class="col-xs-12 col-sm-5 col-lg-4" style="float: none;clear: both; margin: 50px auto 0;">
|
|
<form style=" margin: 50px auto 15px auto;
|
|
width: 100%;
|
|
background-color: #fff;
|
|
border-radius: 3px;
|
|
border: 1px solid #ccc;
|
|
border-top: 5px solid #337ab7;
|
|
padding: 26px 24px 22px;
|
|
border-bottom: 5px solid #ccc;" onsubmit="return false;" name="partner_request_form">
|
|
<p style=" font-weight: bold;font-size: 15px; margin-bottom: 20px;">Оплата счета<span style=" float: right;
|
|
font-size: 25px;
|
|
color: #fff;
|
|
position: absolute;
|
|
right: 30px;
|
|
top: 15px;
|
|
background: #a6d262;
|
|
padding: 5px 10px;
|
|
border-radius: 3px;">{{ sum }} руб</span></p>
|
|
{% if result %}
|
|
<p style=" text-align: center;
|
|
font-size: 25px;
|
|
padding: 20px;
|
|
background: #ffc;
|
|
color: #666;
|
|
margin-bottom: 30px;"><i class="glyphicon glyphicon-ok"></i> Ваш платеж оплачен</p>
|
|
{% else %}
|
|
<p style=" text-align: center;
|
|
font-size: 25px;
|
|
padding: 20px;
|
|
background: #ffc;
|
|
color: #666;
|
|
margin-bottom: 30px;"><i class="glyphicon glyphicon-remove"></i> Во время проведеня платежа произошла ошибка.</p>
|
|
<button onclick="location.href='{{ url }}'" name="button" class="btn btn-success" style="width: 100%;font-size: 25px;">Сформировать счет заново</button>
|
|
{% endif %}
|
|
</form>
|
|
<p style="margin: 0 15px;font-weight: bold;color: #fff;"><i class="glyphicon glyphicon-copyright-mark"></i> 2016 <span style="float: right;">{{ design.name }}</span></p>
|
|
</div>
|
|
|
|
|
|
{% block content %}
|
|
{% endblock %}
|
|
{% block footer %}
|
|
{% endblock %}
|
|
<script src="/static/js/jquery.min.js"></script>
|
|
<script src="/static/js/bill_request.js" type="text/javascript"></script>
|
|
<script src="/static/js/regex_check.js" type="text/javascript"></script>
|
|
</body>
|
|
</html> |