Welcome to Forum Monster

Forum Monster is a simple forum generator written in rails 3. The goal of Forum Monster, is to provide a simple, and easy to setup forum application without having to dictate how your site it setup.

The email field is required, but none of the data is saved for more than a day. Feel free to put in a fake address.

<%= form_for("user", :as => resource_name, :url => registration_path("user")) do |f| %>

Username:
<%= f.text_field :username, :style => "font-size:2.2em", :autocomplete => "off" %>

Email Address:
<%= f.text_field :email, :style => "font-size:2.2em", :autocomplete => "off" %>

Password:
<%= f.password_field :password, :style => "font-size:2.2em", :autocomplete => "off" %>

Confirm Password:
<%= f.password_field :password_confirmation, :style => "font-size:2.2em", :autocomplete => "off" %>

<%= f.submit "Sign up" %>

<% end %>