So I have Authlogic working fine with this user_sessions/new view:
user_sessions/new
<% form_for @user_session, :url => user_session_path do |f| %> <%
Assuming you're using a User model, the easiest way to use email for authentication in Authlogic is:
class User < ActiveRecord::Base acts_as_authentic do |c| c.login_field = 'email' end end