2019-12-16 08:53:29 +00:00
|
|
|
{% load static %}
|
|
|
|
{% load i18n %}
|
|
|
|
<!DOCTYPE html>
|
|
|
|
<html>
|
|
|
|
|
|
|
|
<head>
|
|
|
|
<meta charset="utf-8">
|
|
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
2022-07-05 06:43:56 +00:00
|
|
|
<link rel="shortcut icon" href="{{ INTERFACE.favicon }}" type="image/x-icon">
|
2019-12-16 08:53:29 +00:00
|
|
|
<title>{% block html_title %}{% endblock %}</title>
|
|
|
|
|
|
|
|
{% include '_head_css_js.html' %}
|
|
|
|
<link href="{% static "css/jumpserver.css" %}" rel="stylesheet">
|
2022-06-25 14:14:12 +00:00
|
|
|
<script src="{% static "js/jumpserver.js" %}?_=9"></script>
|
2019-12-16 08:53:29 +00:00
|
|
|
<style>
|
|
|
|
.passwordBox {
|
|
|
|
max-width: 560px;
|
|
|
|
margin: 0 auto;
|
|
|
|
padding: 100px 20px 20px 20px;
|
|
|
|
}
|
|
|
|
</style>
|
|
|
|
{% block custom_head_css_js %} {% endblock %}
|
|
|
|
</head>
|
|
|
|
|
|
|
|
<body class="gray-bg">
|
|
|
|
<div class="passwordBox animated fadeInDown">
|
|
|
|
<div class="row">
|
|
|
|
<div class="col-md-12">
|
|
|
|
<div class="ibox-content">
|
2022-07-06 09:26:09 +00:00
|
|
|
<h2 class="font-bold">
|
|
|
|
{% block title %}{% endblock %}
|
|
|
|
</h2>
|
|
|
|
<div style="margin: 10px 0">
|
|
|
|
{% block content %} {% endblock %}
|
|
|
|
</div>
|
2019-12-16 08:53:29 +00:00
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
<hr/>
|
|
|
|
<div class="row">
|
|
|
|
<div class="col-md-12">
|
|
|
|
{% include '_copyright.html' %}
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</body>
|
2021-11-10 03:30:48 +00:00
|
|
|
{% include '_foot_js.html' %}
|
2019-12-16 08:53:29 +00:00
|
|
|
{% block custom_foot_js %} {% endblock %}
|
|
|
|
</html>
|