Files
pipeline-lifetime/templates/auth_base.html
T

17 lines
661 B
HTML

<!doctype html>
<html lang="zh-CN">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>{% block title %}账户验证{% endblock %} | 供水管道健康评估系统</title>
<meta name="theme-color" content="#005EB8">
<link rel="icon" href="{{ url_for('static', filename='favicon.svg') }}" type="image/svg+xml">
<link href="{{ url_for('static', filename='css/app.css') }}" rel="stylesheet">
</head>
<body class="min-h-screen bg-page text-textMain">
<main class="mx-auto flex min-h-screen max-w-md items-center px-4 py-5 sm:px-5">
{% block content %}{% endblock %}
</main>
</body>
</html>