<% form_tag({:action => "signup"}, {:id => "signup_form"}) do %> <%= foi_error_messages_for :user_signup %>

If you're new to WhatDoTheyKnow

<%= text_field 'user_signup', 'email', { :size => 20 } %>

We will not reveal your email address to anybody unless you or the law tell us to (details).

<%= text_field 'user_signup', 'name', { :size => 20 } %>

Your name will appear publicly (why?) on this website and in search engines. If you are thinking of using a pseudonym, please read this first.

<%= password_field 'user_signup', 'password', { :size => 15 } %>

<%= password_field 'user_signup', 'password_confirmation', { :size => 15 } %>

<%= hidden_field_tag 'token', params[:token], { :id => 'signup_token' } %> <%= submit_tag "Sign up" %>
<% end %>