mirror of https://github.com/jumpserver/jumpserver
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.
42 lines
1.3 KiB
42 lines
1.3 KiB
{% load static %}
|
|
{% load i18n %}
|
|
|
|
<!DOCTYPE html>
|
|
<html>
|
|
<head>
|
|
<meta charset="UTF-8">
|
|
<title> {{ INTERFACE.login_title }} </title>
|
|
<link rel="shortcut icon" href="{{ INTERFACE.favicon }}" type="image/x-icon">
|
|
{% include '_head_css_js.html' %}
|
|
<link href="{% static 'css/jumpserver.css' %}" rel="stylesheet">
|
|
<link href="{% static 'css/style.css' %}" rel="stylesheet">
|
|
<link rel="stylesheet" href="{% static 'css/otp.css' %}" />
|
|
<script src="{% static "js/plugins/qrcode/qrcode.min.js" %}"></script>
|
|
</head>
|
|
|
|
<body style="background-color: #f3f3f4">
|
|
<header>
|
|
<div class="logo">
|
|
<a href="{% url 'index' %}">
|
|
<img src="{{ INTERFACE.logo_logout }}" alt="" width="50px" height="50px"/>
|
|
</a>
|
|
<span style="font-size: 18px; line-height: 50px">{{ INTERFACE.login_title }}</span>
|
|
</div>
|
|
<div>
|
|
<a href="{% url 'index' %}">{% trans 'Home page' %}</a>
|
|
</div>
|
|
</header>
|
|
<body>
|
|
{% block body %}
|
|
{% endblock %}
|
|
</body>
|
|
<footer>
|
|
<div style="margin-top: 100px;">
|
|
{% include '_copyright.html' %}
|
|
</div>
|
|
</footer>
|
|
{% include '_foot_js.html' %}
|
|
</body>
|
|
</html>
|
|
|