Sha256: 793c53af33b4375d9cd25753a69eea4a2ea91b3168254e5e9e959e40ad81baae
Contents?: true
Size: 472 Bytes
Versions: 3
Compression:
Stored size: 472 Bytes
Contents
<!DOCTYPE html> <html> <head> <title>New User</title> <%= csrf_meta_tag %> </head> <body> <%= form_for @user do |f| %> <%= f.label :name, "Name" %> <%= f.text_field :name %> <%= f.label :email, "Email" %> <%= f.text_field :email %> <%= f.label :password, "Password" %> <%= f.password_field :password %> <%= f.label :password_confirmation, "Re-enter password" %> <%= f.password_field :password_confirmation %> <%= f.submit %> <% end %> </body> </html>
Version data entries
3 entries across 3 versions & 1 rubygems
Version | Path |
---|---|
double_auth_engine-0.0.5 | app/views/users/new.html.erb |
double_auth_engine-0.0.2 | app/views/users/new.html.erb |
double_auth_engine-0.0.1 | app/views/users/new.html.erb |