2
0

index.html 3.1 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586
  1. {% load crispy_forms_tags %}
  2. {% load socialaccount %}
  3. <!doctype html>
  4. <html lang="en">
  5. <head>
  6. <meta charset="utf-8">
  7. <meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
  8. <link rel="icon" href="/docs/4.0/assets/img/favicons/favicon.ico">
  9. <title>UnTube</title>
  10. <style type="text/css">
  11. body {
  12. background: linear-gradient(-45deg, #B2A3FF, #84bcf3, #AE876B, #B0E7AE);
  13. //background: linear-gradient(-45deg, #0645a4, #2480cd, #84bcf3, #b7d6f7);
  14. //background: linear-gradient(-45deg, #AE876B, #ABA27B, #A7BC8A, #A3D69A);
  15. background-size: 400% 400%;
  16. animation: gradient 10s ease infinite;
  17. }
  18. @keyframes gradient {
  19. 0% {
  20. background-position: 0% 50%;
  21. }
  22. 50% {
  23. background-position: 100% 50%;
  24. }
  25. 100% {
  26. background-position: 0% 50%;
  27. }
  28. }
  29. </style>
  30. <link href="https://fonts.googleapis.com/css2?family=Fredoka+One&family=Open+Sans&display=swap" rel="stylesheet">
  31. <!-- Bootstrap core CSS -->
  32. <link href="https://getbootstrap.com/docs/4.0/dist/css/bootstrap.min.css" rel="stylesheet">
  33. <!-- Custom styles for this template -->
  34. <link href="https://getbootstrap.com/docs/4.0/examples/cover/cover.css" rel="stylesheet">
  35. </head>
  36. <body style="font-family: 'Fredoka One'">
  37. <div class="cover-container d-flex h-100 p-3 mx-auto flex-column text-center">
  38. <header class="masthead mb-auto">
  39. {% for message in messages %}
  40. <div class="alert alert-success alert-success fade show" role="alert">
  41. {{ message }}
  42. <button type="button" class="btn-close" data-bs-dismiss="alert" aria-label="Close"></button>
  43. </div>
  44. {% endfor %}
  45. </header>
  46. <main role="main" class="inner cover">
  47. <h1 class="cover-heading">UnTube</h1>
  48. <p class="lead">UnTube is a simple Youtube playlist manager. Modify and keep track of your YouTube playlists with ease.</p>
  49. <p class="lead">
  50. <br>
  51. <a class="btn btn-outline-danger" href="{% provider_login_url 'google' %}">Login with Google</a>
  52. </p>
  53. </main>
  54. <footer class="mastfoot mt-auto">
  55. <div class="inner text-white">
  56. <h6>Made with <span style="color: #e25555;">&hearts;</span> in Django</h6>
  57. </div>
  58. </footer>
  59. </div>
  60. <!-- Bootstrap core JavaScript
  61. ================================================== -->
  62. <!-- Placed at the end of the document so the pages load faster -->
  63. <script src="https://code.jquery.com/jquery-3.2.1.slim.min.js" integrity="sha384-KJ3o2DKtIkvYIK3UENzmM7KCkRr/rE9/Qpg6aAZGJwFDMVNA/GpGFF93hXpG5KkN" crossorigin="anonymous"></script>
  64. <script src="https://getbootstrap.com/docs/4.0/assets/js/vendor/popper.min.js"></script>
  65. <script src="https://getbootstrap.com/docs/4.0/dist/js/bootstrap.min.js"></script>
  66. </body>
  67. </html>