tracks/app/views/layouts/login.html.erb
Matt Rogers 89506dbeb7 Redesign the login page
Makes use of both bootstrap and a rendering of the Tracks logo to
provide a bit better experience in term of brand identity as well as
also supporting mobile better.
2015-12-15 20:02:53 -06:00

14 lines
478 B
Text

<!DOCTYPE html>
<html>
<head>
<meta http-equiv="content-type" content="text/html; charset=utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1">
<%= favicon_link_tag 'favicon.ico' %>
<%= favicon_link_tag 'apple-touch-icon.png', :rel => 'apple-touch-icon', :type => 'image/png' %>
<title><%= @page_title -%></title>
<%= stylesheet_link_tag "application" %>
</head>
<body class="bootstrap">
<%= yield %>
</body>
</html>