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.
67 lines
2.5 KiB
67 lines
2.5 KiB
{% load static %}
|
|
{% load i18n %}
|
|
<!DOCTYPE html>
|
|
<html>
|
|
|
|
<head>
|
|
<meta charset="utf-8">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
|
<title>JumpServer</title>
|
|
<link rel="shortcut icon" href="{{ FAVICON_URL }}" type="image/x-icon">
|
|
{% include '_head_css_js.html' %}
|
|
<link href="{% static "css/jumpserver.css" %}" rel="stylesheet">
|
|
<script src="{% static "js/jumpserver.js" %}"></script>
|
|
<style>
|
|
.captcha {
|
|
float: right;
|
|
}
|
|
</style>
|
|
</head>
|
|
|
|
<body class="gray-bg">
|
|
<div class="loginColumns animated fadeInDown">
|
|
<div class="row">
|
|
<div class="col-md-6">
|
|
<h2 class="font-bold" style="text-align: center">
|
|
{% block msg_title %}
|
|
{% trans 'Welcome to the JumpServer open source fortress' %}
|
|
{% endblock %}
|
|
</h2>
|
|
{% block msg_content %}
|
|
<p>
|
|
{% trans "The world's first fully open source fortress, using the GNU GPL v2.0 open source protocol, is a professional operation and maintenance audit system in compliance with 4A." %}
|
|
</p>
|
|
<p>
|
|
{% trans "Developed using Python/Django, following the Web 2.0 specification and equipped with industry-leading Web Terminal solutions, with beautiful interactive interface and good user experience." %}
|
|
</p>
|
|
<p>
|
|
{% trans 'Distributed architecture is adopted to support multi-machine room deployment across regions, central node provides API, and each machine room deploys login node, which can be extended horizontally and without concurrent access restrictions.' %}
|
|
</p>
|
|
<p>
|
|
{% trans "Changes the world, starting with a little bit." %}
|
|
</p>
|
|
{% endblock %}
|
|
</div>
|
|
<div class="col-md-6">
|
|
<div class="ibox-content">
|
|
<div>
|
|
<img src="{{ LOGO_URL }}" width="60" height="60">
|
|
<span class="font-bold text-center" style="font-size: 24px; font-family: inherit; margin-left: 20px">
|
|
{% block content_title %}
|
|
{% trans 'Login' %}</span>
|
|
{% endblock %}
|
|
</div>
|
|
{% block content %} {% endblock %}
|
|
</div>
|
|
</div>
|
|
</div>
|
|
<hr/>
|
|
<div class="row">
|
|
<div class="col-md-12">
|
|
{% include '_copyright.html' %}
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</body>
|
|
</html>
|