14 lines
457 B
HTML
14 lines
457 B
HTML
{% load i18n admin_static %}<!DOCTYPE html>
|
|
<html lang="zh-hans">
|
|
<head>
|
|
<meta charset="utf-8">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1">
|
|
<title>{% block title %}登录 | 智捷ERP{% endblock %}</title>
|
|
<link rel="stylesheet" type="text/css" href="{% static "css/modern_ui.css" %}" />
|
|
{% block extrastyle %}{% endblock %}
|
|
</head>
|
|
<body class="login-page">
|
|
{% block content %}{% endblock %}
|
|
</body>
|
|
</html>
|