notices, password recovery corner cases and UI changes

This commit is contained in:
Karol Selak 2021-03-21 12:41:21 +01:00
parent dace874f4f
commit a69df8e658
14 changed files with 49 additions and 38 deletions

View file

@ -1,8 +1,8 @@
<h3>Sign Up</h3>
<h4>Sign Up</h4>
<%= form_for @user do |f|%>
<%= f.label :email%><br>
<%= f.text_field :email%><br>
<%= f.label :password%><br>
<%= f.password_field :password%><br>
<%= f.submit %>
<%= f.label :email%>
<%= f.text_field :email%>
<%= f.label :password%>
<%= f.password_field :password%>
<%= f.submit 'Sign up', class: 'btn' %>
<%end%>