2024-02-09 07:55:40 +00:00
|
|
|
|
{% load i18n static %}
|
|
|
|
|
|
|
|
|
|
<!doctype html>
|
|
|
|
|
<html lang="en">
|
|
|
|
|
<head>
|
|
|
|
|
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
|
|
|
|
|
<meta name="robots" content="NONE,NOARCHIVE" />
|
|
|
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
|
|
|
|
<meta name="description" content="">
|
|
|
|
|
<meta name="author" content="Pangea">
|
|
|
|
|
<title>{% block title %}{% if title %}{{ title }} – {% endif %}Pangea{% endblock %}</title>
|
|
|
|
|
|
|
|
|
|
<!-- Bootstrap core CSS -->
|
|
|
|
|
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/bootstrap-icons@1.11.1/font/bootstrap-icons.css">
|
|
|
|
|
<link rel="stylesheet" href= "https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.4.2/css/all.min.css">
|
|
|
|
|
<link href="{% static "/css/bootstrap.min.css" %}" rel="stylesheet">
|
|
|
|
|
|
|
|
|
|
<style>
|
|
|
|
|
.bd-placeholder-img {
|
|
|
|
|
font-size: 1.125rem;
|
|
|
|
|
text-anchor: middle;
|
|
|
|
|
-webkit-user-select: none;
|
|
|
|
|
-moz-user-select: none;
|
|
|
|
|
user-select: none;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
@media (min-width: 768px) {
|
|
|
|
|
.bd-placeholder-img-lg {
|
|
|
|
|
font-size: 3.5rem;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
</style>
|
2023-12-04 16:12:39 +00:00
|
|
|
|
|
2024-02-09 07:55:40 +00:00
|
|
|
|
|
|
|
|
|
<!-- Custom styles for this template -->
|
|
|
|
|
<link href="{% static "/css/dashboard.css" %}" rel="stylesheet">
|
|
|
|
|
</head>
|
|
|
|
|
<body id="body-login">
|
|
|
|
|
<header class="navbar navbar-dark sticky-top bg-grey flex-md-nowrap p-0 shadow" style="background-color: #712547;">
|
|
|
|
|
<div class="navbar-nav navbar-sub-brand">
|
2023-12-04 16:12:39 +00:00
|
|
|
|
</div>
|
2024-02-09 07:55:40 +00:00
|
|
|
|
<div class="navbar-nav">
|
2023-12-04 16:12:39 +00:00
|
|
|
|
</div>
|
2024-02-09 07:55:40 +00:00
|
|
|
|
</header>
|
|
|
|
|
|
|
|
|
|
<div class="container">
|
|
|
|
|
<div class="row">
|
|
|
|
|
<div class="col bt-5">
|
|
|
|
|
<div><h1>Fibra por solo 7€ al mes.</h1></div>
|
2023-12-04 16:12:39 +00:00
|
|
|
|
</div>
|
|
|
|
|
</div>
|
2024-02-09 07:55:40 +00:00
|
|
|
|
<div class="row mt-5">
|
|
|
|
|
<div class="col bt-5">
|
|
|
|
|
<div><h4><a href="{% url 'promotion:contract' %}">Contractar normal</a></h4></div>
|
2023-12-04 16:12:39 +00:00
|
|
|
|
</div>
|
2024-02-09 07:55:40 +00:00
|
|
|
|
<div class="col bt-5">
|
|
|
|
|
<div><h4><a href="{% url 'promotion:select_wallet' %}">Contractar amb credencial</a></h4></div>
|
2023-12-04 16:12:39 +00:00
|
|
|
|
</div>
|
|
|
|
|
</div>
|
|
|
|
|
</div>
|
|
|
|
|
|
2024-02-09 07:55:40 +00:00
|
|
|
|
<script src="/static/js/bootstrap.bundle.min.js"></script>
|
|
|
|
|
<script src="https://cdn.jsdelivr.net/npm/feather-icons@4.28.0/dist/feather.min.js" integrity="sha384-uO3SXW5IuS1ZpFPKugNNWqTZRRglnUJK6UAZ/gxOX80nxEkN9NcGZTftn6RzhGWE" crossorigin="anonymous"></script>
|
|
|
|
|
<script src="https://cdn.jsdelivr.net/npm/chart.js@2.9.4/dist/Chart.min.js" integrity="sha384-zNy6FEbO50N+Cg5wap8IKA4M/ZnLJgzc6w2NqACZaK0u0FXfOWRRJOnQtpZun8ha" crossorigin="anonymous"></script>
|
|
|
|
|
<script src="/static/js/dashboard.js"></script>
|
|
|
|
|
</body>
|
2023-12-04 16:12:39 +00:00
|
|
|
|
</html>
|