You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 

22 lines
664 B

<h2>Registrieren</h2>
<%= form_for(resource, as: resource_name, url: registration_path(resource_name)) do |f| %>
<div class="mb-3">
<%= f.label :email %>
<%= f.email_field :email, class: "form-control" %>
</div>
<div class="mb-3">
<%= f.label :password %>
<%= f.password_field :password, autocomplete: "new‑password", class: "form-control" %>
</div>
<div class="mb-3">
<%= f.label :password_confirmation %>
<%= f.password_field :password_confirmation, autocomplete: "new‑password", class: "form-control" %>
</div>
<%= f.submit "Registrieren", class: "btn btn-success" %>
<% end %>
<%= render "devise/shared/links" %>