38 lines
No EOL
1.2 KiB
HTML
38 lines
No EOL
1.2 KiB
HTML
<!DOCTYPE html>
|
|
<html lang="en">
|
|
<head>
|
|
<meta charset="utf-8">
|
|
<title>Биллинг</title>
|
|
<script type="text/javascript" src="js/jquery-1.11.0.min.js"></script>
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
|
|
<link rel="stylesheet" href="css/foundation.css" />
|
|
<link rel="stylesheet" href="css/style.css" />
|
|
<script src="js/jquery-1.11.0.min.js"></script>
|
|
<script src="js/vendor/modernizr.js"></script>
|
|
</head>
|
|
<body>
|
|
{% include "_header.html" %}
|
|
<div class="row">
|
|
<div class="large-12 columns">
|
|
<h1>Биллинг</h1>
|
|
</div>
|
|
<div class="large-12 columns">
|
|
<ul class="inline-list">
|
|
<li><a href="billing.php?page=index">Данные</a></li>
|
|
<li><a href="/payment/">Оплатить</a></li>
|
|
<li><a href="/payment/history.php2">История платежей</a></li>
|
|
</ul>
|
|
</div>
|
|
</div>
|
|
<div class="row">
|
|
<div class="large-12 columns">
|
|
{% if action == "edit" %}
|
|
{% include "_billing_information_form.twig" %}
|
|
{% else %}
|
|
{% include "_billing_information.twig" %}
|
|
{% endif %}
|
|
</div>
|
|
</div>
|
|
{% include "_footer.html" %}
|
|
</body>
|
|
</html> |