bookstore/app/views/users/new.html.erb

8 lines
198 B
Text
Raw Normal View History

2021-03-21 11:40:53 +01:00
<h3>Sign Up</h3>
2021-03-20 14:23:06 +01:00
<%= form_for @user do |f|%>
2021-03-20 22:37:38 +01:00
<%= f.label :email%><br>
<%= f.text_field :email%><br>
2021-03-20 14:23:06 +01:00
<%= f.label :password%><br>
<%= f.password_field :password%><br>
<%= f.submit %>
<%end%>