Guest User

Untitled

a guest
Dec 13th, 2018
62
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.82 KB | None | 0 0
  1. <!DOCTYPE html>
  2. <html>
  3. <head>
  4. <title>Vuerails</title>
  5. <%= csrf_meta_tags %>
  6. <%= csp_meta_tag %>
  7.  
  8. <%= stylesheet_link_tag 'application', media: 'all', 'data-turbolinks-track': 'reload' %>
  9. <%= javascript_include_tag 'application', 'data-turbolinks-track': 'reload' %>
  10. <%= stylesheet_pack_tag 'application', media: 'all', 'data-turbolinks-track': 'reload' %>
  11. <%= javascript_pack_tag 'application', 'data-turbolinks-track': 'reload' %>
  12. </head>
  13.  
  14. <body>
  15. <style>
  16. html, body {
  17. height: 100%;
  18. }
  19. </style>
  20. <div class="relative block h-full" data-behavior="vue">
  21. <div class="relative flex items-center justify-center h-full">
  22. <div class="block login-box-container w-5/6 md:w-3/4 xl:w-1/4 ">
  23. <%= yield %>
  24. </div>
  25. </div>
  26. </div>
  27. </body>
  28. </html>
Add Comment
Please, Sign In to add comment