binarylogic / authlogic_example

An example rails app using the Authlogic authentication library

This URL has Read+Write access

authlogic_example / app / views / users / new.html.erb
100644 7 lines (6 sloc) 0.182 kb
1
2
3
4
5
6
7
<h1>Register</h1>
 
<% form_for @user, :url => account_path do |f| %>
  <%= f.error_messages %>
  <%= render :partial => "form", :object => f %>
  <%= f.submit "Register" %>
<% end %>