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.
44 lines
1.3 KiB
44 lines
1.3 KiB
{% load static %}
|
|
{% load i18n %}
|
|
|
|
<!DOCTYPE html>
|
|
<html>
|
|
<head>
|
|
<meta charset="UTF-8">
|
|
<title> {{ JMS_TITLE }} </title>
|
|
<link rel="shortcut icon" href="{{ FAVICON_URL }}" type="image/x-icon">
|
|
{# <link rel="stylesheet" href="{% static 'fonts/font_otp/iconfont.css' %}" />#}
|
|
<link rel="stylesheet" href="{% static 'css/otp.css' %}" />
|
|
<script src="{% static 'js/jquery-3.1.1.min.js' %}"></script>
|
|
<script src="{% static "js/plugins/qrcode/qrcode.min.js" %}"></script>
|
|
</head>
|
|
|
|
<body>
|
|
<header>
|
|
<div class="logo">
|
|
<a href="{% url 'index' %}">
|
|
<img src="{{ LOGO_URL }}" alt="" width="50px" height="50px"/>
|
|
</a>
|
|
<a href="{% url 'index' %}">{{ JMS_TITLE }}</a>
|
|
</div>
|
|
<div>
|
|
<a href="{% url 'index' %}">{% trans 'Home page' %}</a>
|
|
<b>丨</b>
|
|
<a href="http://docs.jumpserver.org/zh/docs/">{% trans 'Docs' %}</a>
|
|
<b>丨</b>
|
|
<a href="https://www.github.com/jumpserver/">GitHub</a>
|
|
</div>
|
|
</header>
|
|
<body>
|
|
{% block body %}
|
|
{% endblock %}
|
|
</body>
|
|
<footer>
|
|
<div class="" style="margin-top: 100px;">
|
|
{% include '_copyright.html' %}
|
|
</div>
|
|
</footer>
|
|
</body>
|
|
</html>
|
|
|