You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

23 lines
527 B

  1. <!DOCTYPE html>
  2. <html>
  3. <head>
  4. <title><%= t('doorkeeper.layouts.application.title') %></title>
  5. <meta charset="utf-8">
  6. <meta http-equiv="X-UA-Compatible" content="IE=edge">
  7. <meta name="viewport" content="width=device-width, initial-scale=1.0">
  8. <%= stylesheet_link_tag "doorkeeper/application" %>
  9. <%= csrf_meta_tags %>
  10. </head>
  11. <body>
  12. <div id="container">
  13. <%- if flash[:notice].present? %>
  14. <div class="alert alert-info">
  15. <%= flash[:notice] %>
  16. </div>
  17. <% end -%>
  18. <%= yield %>
  19. </div>
  20. </body>
  21. </html>