mirror of
https://github.com/jumpserver/jumpserver.git
synced 2026-04-08 05:13:20 +00:00
61 lines
2.0 KiB
HTML
61 lines
2.0 KiB
HTML
{% 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-2.1.1.js' %}"></script>
|
|
<script src="{% static "js/plugins/qrcode/qrcode.min.js" %}"></script>
|
|
<script type="text/javascript" src="{% url 'javascript-catalog' %}"></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>
|
|
|
|
<!--内容-->
|
|
<article>
|
|
<div class="" style="text-align: center; margin-bottom: 50px">
|
|
<h2>
|
|
{% block small_title %}
|
|
{% endblock %}
|
|
</h2>
|
|
</div>
|
|
<div >
|
|
<div class="verify">{% trans 'Security token validation' %} {% trans 'Account' %} <span>{{ user.username }}</span> {% trans 'Follow these steps to complete the binding operation' %}</div>
|
|
<hr style="width: 500px; margin: auto; margin-top: 10px;">
|
|
{% block content %}
|
|
{% endblock %}
|
|
</div>
|
|
</article>
|
|
|
|
|
|
<footer>
|
|
<div class="" style="margin-top: 100px;">
|
|
{% include '_copyright.html' %}
|
|
</div>
|
|
</footer>
|
|
|
|
</body>
|
|
</html>
|
|
|