Sha256: 1bbefe85487d4b8ddf1bca31a2d564ae72b4e51f6258421b636bd5a686cecef0

Contents?: true

Size: 534 Bytes

Versions: 1

Compression:

Stored size: 534 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 :login, "Login" %>
  <%= f.text_field :login %>
  <%= 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

1 entries across 1 versions & 1 rubygems

Version Path
double_auth_engine-0.0.4 app/views/users/new.html.erb