login.blade.php 1.9 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465
  1. <!DOCTYPE html>
  2. <html lang="{{ str_replace('_', '-', app()->getLocale()) }}" dir="ltr">
  3. <head>
  4. <meta charset="utf-8" />
  5. <meta name="viewport" content="width=device-width, initial-scale=1" />
  6. <title>登录 - 数学知识图谱管理系统</title>
  7. <!-- 加载自定义样式 -->
  8. <link rel="stylesheet" href="{{ asset('build/assets/app-DdCteCZN.css') }}" />
  9. <!-- 自定义内联样式 -->
  10. <style>
  11. body {
  12. font-family: 'Inter', ui-sans-serif, system-ui, sans-serif;
  13. background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  14. min-height: 100vh;
  15. margin: 0;
  16. padding: 0;
  17. }
  18. .login-container {
  19. display: flex;
  20. align-items: center;
  21. justify-content: center;
  22. min-height: 100vh;
  23. padding: 2rem;
  24. }
  25. .login-card {
  26. background: rgba(255, 255, 255, 0.95);
  27. backdrop-filter: blur(10px);
  28. border-radius: 1rem;
  29. padding: 2rem;
  30. box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
  31. width: 100%;
  32. max-width: 400px;
  33. }
  34. .login-logo {
  35. text-align: center;
  36. margin-bottom: 2rem;
  37. }
  38. .login-logo h1 {
  39. color: #0ea5e9;
  40. font-size: 1.5rem;
  41. font-weight: 600;
  42. margin: 0;
  43. }
  44. .login-logo p {
  45. color: #64748b;
  46. font-size: 0.875rem;
  47. margin: 0.5rem 0 0;
  48. }
  49. </style>
  50. </head>
  51. <body>
  52. <div class="login-container">
  53. <div class="login-card">
  54. <div class="login-logo">
  55. <h1>数学知识图谱管理系统</h1>
  56. <p>Math Knowledge Graph Management System</p>
  57. </div>
  58. {{ $slot }}
  59. </div>
  60. </div>
  61. </body>
  62. </html>