index.blade.php 2.0 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879
  1. <!DOCTYPE html>
  2. <html lang="en">
  3. <head>
  4. <meta charset="utf-8">
  5. <meta http-equiv="X-UA-Compatible" content="IE=edge">
  6. <meta name="viewport" content="width=device-width, initial-scale=1">
  7. <meta name="mobile-web-app-capable" content="yes">
  8. <title>Pixelfed Installer</title>
  9. <link rel="manifest" href="/manifest.json">
  10. <link href="/css/app.css" rel="stylesheet" data-stylesheet="light">
  11. <style type="text/css">
  12. body {
  13. background: linear-gradient(rgba(29, 38, 113, 0.8), rgba(195, 55, 100, 0.8));
  14. }
  15. .btn {
  16. min-width: 100px;
  17. }
  18. .btn-primary {
  19. min-width: 200px;
  20. font-weight: bold;
  21. }
  22. .form-group {
  23. margin-bottom: 1.5rem;
  24. }
  25. .form-group label {
  26. font-weight: bold;
  27. }
  28. .form-control::placeholder {
  29. color: #cbd5e1;
  30. }
  31. .form-control {
  32. background:#f5f8fa;
  33. border-color:#f5f8fa;
  34. }
  35. .form-control:focus {
  36. color: #000;
  37. background:#f5f8fa;
  38. border-color:#f5f8fa;
  39. box-shadow: none
  40. }
  41. </style>
  42. </head>
  43. <body class="loggedIn">
  44. <main id="content">
  45. <noscript>
  46. <div class="container">
  47. <p class="pt-5 text-center lead">Please enable javascript to view this content.</p>
  48. </div>
  49. </noscript>
  50. <div class="container w-100 h-100">
  51. <div class="row w-100 h-100 d-flex align-items-center justify-content-center">
  52. <div class="col-12">
  53. <p class="text-center py-3">
  54. <a href="/installer">
  55. <img src="/img/pixelfed-icon-color.svg" width="60" height="60">
  56. </a>
  57. </p>
  58. <router-view></router-view>
  59. <p class="d-flex justify-content-between text-white pt-2 px-2">
  60. <a class="font-weight-bold text-white" href="https://docs.pixelfed.org/running-pixelfed/installation.html" target="_blank">Help</a>
  61. <span class="font-weight-bold">v{{config('pixelfed.version')}}</span>
  62. </p>
  63. </div>
  64. </div>
  65. </div>
  66. </main>
  67. <script type="text/javascript" src="/js/manifest.js"></script>
  68. <script type="text/javascript" src="/js/vendor.js"></script>
  69. <script type="text/javascript" src="/js/installer.js"></script>
  70. </body>
  71. </html>