Just the blockers now!!
This commit is contained in:
@@ -5,29 +5,20 @@
|
||||
<meta name="viewport" content="width=device-width,initial-scale=1">
|
||||
<%= csrf_meta_tags %>
|
||||
<%= csp_meta_tag %>
|
||||
<link rel="stylesheet" href="https://minimalistcss.github.io/dist/minimalist.min.css">
|
||||
<%= stylesheet_link_tag "application", "data-turbo-track": "reload" %>
|
||||
<%= javascript_importmap_tags %>
|
||||
|
||||
</head>
|
||||
<body>
|
||||
<nav class="flex flex-column md-flex-row bg-gray-lighter px-4">
|
||||
<div class="flex justify-between">
|
||||
<div>
|
||||
<menu>
|
||||
<li><%= link_to "Home", root_path %></li><% if user_signed_in? %>
|
||||
<li><%= link_to "Edit account", edit_user_registration_path %></li>
|
||||
<li><%= button_to "Log out", destroy_user_session_path, method: :delete %></li><% end %>
|
||||
</menu>
|
||||
</div>
|
||||
|
||||
|
||||
<a data-toggle="toggle-nav" data-target="#nav-items" href="#"
|
||||
class="flex items-center ml-auto md-hidden opacity-70">
|
||||
<div class="m-3 br-4 border-gray-darkest p-1">
|
||||
<div class="border-t border-gray-darkest my-1 px-3"></div>
|
||||
<div class="border-t border-gray-darkest my-1"></div>
|
||||
<div class="border-t border-gray-darkest my-1"></div>
|
||||
</div>
|
||||
</a>
|
||||
</div>
|
||||
<div id="nav-items" class="hidden flex sm-w-100pc flex-column md-flex md-flex-row md-justify-start items-center">
|
||||
<%= link_to "Home", root_path, class: "inline-block fs-s1 mx-3 py-3 gray-darkest no-underline hover-underline" %>
|
||||
<% if user_signed_in? %><%= link_to "Edit account", edit_user_registration_path, class: "button" %> <%= button_to "Log out", destroy_user_session_path, method: :delete, class: "button bg-red white focus-red" %><% end %>
|
||||
</div>
|
||||
</nav>
|
||||
|
||||
<main>
|
||||
<% if notice %><div class="bg-green-lightest green-darkest px-5 py-3 br-3 border-l bw-6 bc-green"><%= notice %></div><% end %>
|
||||
@@ -35,11 +26,17 @@
|
||||
|
||||
<%= yield %>
|
||||
</main>
|
||||
|
||||
<footer>
|
||||
<hr/>
|
||||
RoR Version <%= Rails.version %> (<%=Rails.env%>) | Ruby <%= "#{RUBY_VERSION}p#{RUBY_PATCHLEVEL}" %> | OS <%= RUBY_PLATFORM %>
|
||||
<hr/>
|
||||
<h3>Blockers:</h3>
|
||||
<ul>
|
||||
<li>2FA</li>
|
||||
<li>Blocking Sign-up at Routes level</li>
|
||||
<li>Tests for controllers and integration</li>
|
||||
<li>Version number</li>
|
||||
</ul>
|
||||
</footer>
|
||||
|
||||
</body>
|
||||
</html>
|
||||
|
||||
Reference in New Issue
Block a user