mirror of https://github.com/jumpserver/jumpserver
				
				
				
			
		
			
				
	
	
		
			42 lines
		
	
	
		
			1.3 KiB
		
	
	
	
		
			Python
		
	
	
			
		
		
	
	
			42 lines
		
	
	
		
			1.3 KiB
		
	
	
	
		
			Python
		
	
	
{% 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>
 | 
						|
 |