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.
37 lines
1.3 KiB
37 lines
1.3 KiB
<!--flow.html-->
|
|
|
|
{% load static %}
|
|
{% block content %}
|
|
{% csrf_token %}
|
|
<!DOCTYPE html>
|
|
<html lang="en">
|
|
<head>
|
|
<meta charset="UTF-8">
|
|
<title>Flow System</title>
|
|
<link rel="icon" href="{% static 'images/loading-animation.png' %}" type="image/png">
|
|
<link rel="stylesheet" href="{% static 'css/flow.css' %}">
|
|
<link rel="stylesheet" href="{% static 'css/tabs.css' %}">
|
|
<link rel="preconnect" href="https://fonts.googleapis.com">
|
|
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
|
|
<link href="https://fonts.googleapis.com/css2?family=Markazi+Text:wght@400..700&display=swap" rel="stylesheet">
|
|
</head>
|
|
<body>
|
|
<div class="container_create">
|
|
<button id="createTabButton">Crear Pestaña</button>
|
|
<div id="tabsContainer">
|
|
<ul id="tabsList"></ul>
|
|
</div>
|
|
</div>
|
|
<div id="tabContent"></div>
|
|
|
|
<div class="footer">
|
|
<img src="{% static 'images/loading-animation.png' %}" width="120px" height="35px" class="sapian">
|
|
<footer>© 2024 Sapian. Todos los derechos reservados.</footer>
|
|
</div>
|
|
|
|
<script src="{% static 'js/connections.js' %}" defer></script>
|
|
<script src="{% static 'js/flow_doc.js' %}" defer></script>
|
|
<script src="{% static 'js/tabs.js' %}" defer></script>
|
|
</body>
|
|
</html>
|
|
{% endblock %} |