2016-04-22 08:36:38 -05:00
|
|
|
{% load staticfiles bootstrap3%}
|
2016-07-18 21:24:44 -05:00
|
|
|
{% load i18n %}
|
2016-04-22 08:36:38 -05:00
|
|
|
<!DOCTYPE html>
|
|
|
|
|
<html lang="en">
|
|
|
|
|
|
|
|
|
|
<head>
|
|
|
|
|
|
|
|
|
|
<meta charset="utf-8">
|
|
|
|
|
<meta http-equiv="X-UA-Compatible" content="IE=edge">
|
|
|
|
|
<meta name="viewport" content="width=device-width, initial-scale=1">
|
|
|
|
|
<meta name="description" content="">
|
|
|
|
|
<meta name="author" content="">
|
|
|
|
|
|
2016-07-10 22:08:51 -05:00
|
|
|
<title>ungleich</title>
|
2016-04-22 08:36:38 -05:00
|
|
|
|
|
|
|
|
<!-- Bootstrap Core CSS -->
|
|
|
|
|
<link href="{% static 'hosting/css/bootstrap.min.css' %}" rel="stylesheet">
|
|
|
|
|
|
|
|
|
|
<!-- Custom CSS -->
|
|
|
|
|
<link href="{% static 'hosting/css/landing-page.css' %}" rel="stylesheet">
|
2017-07-04 15:00:08 +03:00
|
|
|
<link href="{% static 'hosting/css/user_keys.css' %}" rel="stylesheet">
|
2016-04-22 08:36:38 -05:00
|
|
|
<link href="{% static 'hosting/css/payment.css' %}" rel="stylesheet">
|
2016-05-04 00:16:41 -05:00
|
|
|
<link href="{% static 'hosting/css/order.css' %}" rel="stylesheet">
|
2016-05-03 00:59:40 -05:00
|
|
|
<link href="{% static 'hosting/css/orders.css' %}" rel="stylesheet">
|
|
|
|
|
<link href="{% static 'hosting/css/commons.css' %}" rel="stylesheet">
|
2016-05-04 00:16:41 -05:00
|
|
|
<link href="{% static 'hosting/css/virtual-machine.css' %}" rel="stylesheet">
|
2017-08-22 20:45:18 +05:30
|
|
|
<link href="{% static 'hosting/css/dashboard.css' %}" rel="stylesheet">
|
2017-09-15 00:49:39 +05:30
|
|
|
<link href="{% static 'hosting/css/price_calculator.css' %}" rel="stylesheet">
|
2017-08-31 15:54:01 +05:30
|
|
|
{% block css_extra %}
|
|
|
|
|
{% endblock css_extra %}
|
2016-04-22 08:36:38 -05:00
|
|
|
|
|
|
|
|
<!-- Custom Fonts -->
|
2016-05-24 01:27:10 -05:00
|
|
|
<link href='//fonts.googleapis.com/css?family=Raleway' rel='stylesheet' type='text/css'>
|
|
|
|
|
<link rel="stylesheet" href="//maxcdn.bootstrapcdn.com/font-awesome/4.3.0/css/font-awesome.min.css">
|
2017-08-01 19:05:52 +05:30
|
|
|
<link href="//fonts.googleapis.com/css?family=Lato:300,400,500,700,300italic,400italic,700italic" rel="stylesheet" type="text/css">
|
2017-09-30 17:08:40 +05:30
|
|
|
<link rel="shortcut icon" href="{% static 'hosting/img/favicon.ico' %}" type="image/x-icon" />
|
2016-04-22 08:36:38 -05:00
|
|
|
|
|
|
|
|
<!-- HTML5 Shim and Respond.js IE8 support of HTML5 elements and media queries -->
|
|
|
|
|
<!-- WARNING: Respond.js doesn't work if you view the page via file:// -->
|
|
|
|
|
<!--[if lt IE 9]>
|
|
|
|
|
<script src="https://oss.maxcdn.com/libs/html5shiv/3.7.0/html5shiv.js"></script>
|
|
|
|
|
<script src="https://oss.maxcdn.com/libs/respond.js/1.4.2/respond.min.js"></script>
|
|
|
|
|
<![endif]-->
|
|
|
|
|
|
2017-07-13 22:53:15 +03:00
|
|
|
<!-- Google analytics -->
|
|
|
|
|
{% include "google_analytics.html" %}
|
|
|
|
|
<!-- End Google Analytics -->
|
2016-04-22 08:36:38 -05:00
|
|
|
</head>
|
|
|
|
|
|
|
|
|
|
<body>
|
|
|
|
|
|
|
|
|
|
|
2017-07-24 19:43:03 +05:30
|
|
|
{% block navbar %}
|
2017-09-07 21:01:17 +05:30
|
|
|
{% include "hosting/includes/_navbar_user.html" %}
|
2017-07-24 19:43:03 +05:30
|
|
|
{% endblock navbar %}
|
2017-06-21 23:38:35 +05:30
|
|
|
|
2016-04-22 08:36:38 -05:00
|
|
|
|
2017-06-01 11:24:50 -05:00
|
|
|
<div class="content-dashboard">
|
|
|
|
|
{% block content %}
|
|
|
|
|
{% endblock %}
|
|
|
|
|
</div>
|
2016-04-22 08:36:38 -05:00
|
|
|
|
|
|
|
|
<!-- Footer -->
|
2017-05-28 00:44:36 -05:00
|
|
|
{% if request.user.is_authenticated %}
|
2017-06-09 13:55:45 -05:00
|
|
|
<footer class="footer-vm">
|
2016-04-22 08:36:38 -05:00
|
|
|
<div class="container">
|
2017-07-31 01:04:45 +05:30
|
|
|
<p class="copyright text-muted small">Copyright © ungleich GmbH {% now "Y" %}. {% trans "All Rights Reserved" %}</p>
|
2016-04-22 08:36:38 -05:00
|
|
|
</div>
|
|
|
|
|
</footer>
|
2017-07-01 11:22:12 +05:30
|
|
|
{% else %}
|
2017-07-25 18:59:07 +05:30
|
|
|
<div class="footer-light">
|
|
|
|
|
{% include "datacenterlight/includes/_footer.html" %}
|
|
|
|
|
</div>
|
2017-05-28 00:44:36 -05:00
|
|
|
{% endif %}
|
2016-04-22 08:36:38 -05:00
|
|
|
<!-- jQuery -->
|
|
|
|
|
<script src="{% static 'hosting/js/jquery.js' %}"></script>
|
2017-09-15 20:03:52 +05:30
|
|
|
<script src="//cdnjs.cloudflare.com/ajax/libs/jquery-validate/1.16.0/jquery.validate.min.js"></script>
|
|
|
|
|
<script src="//cdnjs.cloudflare.com/ajax/libs/1000hz-bootstrap-validator/0.11.9/validator.min.js"></script>
|
2016-05-20 16:41:42 -04:30
|
|
|
<!-- Copy Clipboard -->
|
2016-05-24 01:27:10 -05:00
|
|
|
<script src="//cdnjs.cloudflare.com/ajax/libs/clipboard.js/1.5.10/clipboard.min.js"></script>
|
2016-05-20 16:41:42 -04:30
|
|
|
|
2016-04-22 08:36:38 -05:00
|
|
|
|
|
|
|
|
<!-- Bootstrap Core JavaScript -->
|
|
|
|
|
<script src="{% static 'hosting/js/bootstrap.min.js' %}"></script>
|
|
|
|
|
|
2016-06-09 23:50:49 -05:00
|
|
|
<!-- Virtual Machine Detail Javascript -->
|
|
|
|
|
<script src="{% static 'hosting/js/virtual_machine_detail.js' %}"></script>
|
|
|
|
|
|
2017-06-09 13:55:45 -05:00
|
|
|
<!-- Create Virtual Machine Javascript -->
|
|
|
|
|
<script src="{% static 'hosting/js/createvm.js' %}"></script>
|
|
|
|
|
|
2016-06-07 00:29:22 -05:00
|
|
|
<!-- Init JavaScript -->
|
|
|
|
|
<script src="{% static 'hosting/js/initial.js' %}"></script>
|
|
|
|
|
|
2017-09-21 15:03:00 +05:30
|
|
|
{% block js_extra %}
|
|
|
|
|
{% comment %}
|
|
|
|
|
this block is above some files, because on stripe error scripts below the stripe
|
|
|
|
|
script are not properly executed.
|
|
|
|
|
{% endcomment %}
|
|
|
|
|
{% endblock js_extra %}
|
|
|
|
|
|
2017-06-04 17:04:38 -05:00
|
|
|
<script src="https://js.stripe.com/v3/"></script>
|
|
|
|
|
<script src="https://js.stripe.com/v2/"></script>
|
2016-04-22 08:36:38 -05:00
|
|
|
<!-- Stripe Lib -->
|
|
|
|
|
|
|
|
|
|
<!-- Proccess payment lib -->
|
|
|
|
|
<script type="text/javascript" src="{% static 'hosting/js/payment.js' %}"></script>
|
|
|
|
|
|
2016-05-24 01:19:49 -05:00
|
|
|
<!-- Gen SSH Key lib -->
|
|
|
|
|
<script type="text/javascript" src="{% static 'hosting/js/gen-ssh-key.js' %}"></script>
|
|
|
|
|
|
2017-06-21 11:45:35 -05:00
|
|
|
<!-- Moment -->
|
|
|
|
|
<script type="text/javascript" src="//cdnjs.cloudflare.com/ajax/libs/moment.js/2.18.1/moment.min.js"></script>
|
|
|
|
|
<script type="text/javascript" src="//cdnjs.cloudflare.com/ajax/libs/moment.js/2.18.1/moment-with-locales.js"></script>
|
|
|
|
|
|
2016-04-22 08:36:38 -05:00
|
|
|
</body>
|
|
|
|
|
|
|
|
|
|
</html>
|