edit authors, delete users, UI changes

This commit is contained in:
Karol Selak 2021-03-21 22:31:58 +01:00
parent e36cc36947
commit ccb6e23960
19 changed files with 190 additions and 75 deletions

View file

@ -1,9 +1,11 @@
<h4>Login</h4>
<%= form_tag '/login' do %>
<%= label_tag :email%>
<%= text_field_tag :email %>
<%= label_tag :password%>
<%= password_field_tag :password%>
<%= submit_tag "Login", class: 'btn' %>
<%end%>
<%= link_to "Password recovery", '/password_recovery_request', method: :get%>
<div class='container'>
<h4>Login</h4>
<%= form_tag '/login' do %>
<%= label_tag :email%>
<%= text_field_tag :email %>
<%= label_tag :password%>
<%= password_field_tag :password%>
<%= submit_tag "Login", class: 'btn' %>
<%end%>
<%= link_to "Password recovery", '/password_recovery_request', method: :get %>
</div>

View file

@ -1,8 +1,10 @@
<h4>Welcome</h4>
<% if logged_in? %>
You are Logged In, <%= current_user.email %>
<%= button_to "Logout", '/logout', method: :get, class: 'btn' %>
<% else %>
<%= button_to "Login", '/login', method: :get, class: 'btn' %>
<%= button_to "Sign Up", '/users/new', method: :get, class: 'btn' %>
<% end %>
<div class='container'>
<h4>Welcome</h4>
<% if logged_in? %>
You are Logged In, <%= current_user.email %>
<%= button_to "Logout", '/logout', method: :get, class: 'btn' %>
<% else %>
<%= button_to "Login", '/login', method: :get, class: 'btn' %>
<%= button_to "Sign Up", '/users/new', method: :get, class: 'btn' %>
<% end %>
</div>