| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465 |
- <!DOCTYPE html>
- <html lang="{{ str_replace('_', '-', app()->getLocale()) }}" dir="ltr">
- <head>
- <meta charset="utf-8" />
- <meta name="viewport" content="width=device-width, initial-scale=1" />
- <title>登录 - 数学知识图谱管理系统</title>
- <!-- 加载自定义样式 -->
- <link rel="stylesheet" href="{{ asset('build/assets/app-DdCteCZN.css') }}" />
- <!-- 自定义内联样式 -->
- <style>
- body {
- font-family: 'Inter', ui-sans-serif, system-ui, sans-serif;
- background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
- min-height: 100vh;
- margin: 0;
- padding: 0;
- }
- .login-container {
- display: flex;
- align-items: center;
- justify-content: center;
- min-height: 100vh;
- padding: 2rem;
- }
- .login-card {
- background: rgba(255, 255, 255, 0.95);
- backdrop-filter: blur(10px);
- border-radius: 1rem;
- padding: 2rem;
- box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
- width: 100%;
- max-width: 400px;
- }
- .login-logo {
- text-align: center;
- margin-bottom: 2rem;
- }
- .login-logo h1 {
- color: #0ea5e9;
- font-size: 1.5rem;
- font-weight: 600;
- margin: 0;
- }
- .login-logo p {
- color: #64748b;
- font-size: 0.875rem;
- margin: 0.5rem 0 0;
- }
- </style>
- </head>
- <body>
- <div class="login-container">
- <div class="login-card">
- <div class="login-logo">
- <h1>数学知识图谱管理系统</h1>
- <p>Math Knowledge Graph Management System</p>
- </div>
- {{ $slot }}
- </div>
- </div>
- </body>
- </html>
|