3 <table width="auto" padding="5px">
5 <td width="47%" valign="top">
8 <p>If you have received an email with a token inviting you to vote in an
9 ongoing election, you can log in to vote using your token here.</p>
11 <%= form_tag :controller => 'voter', :action => 'index' %>
12 <%= text_field :vote, :password %>
13 <%= submit_tag "Log In" %>
16 <p><%= link_to 'Lost or forgot your token?', :controller => 'voter', :action => 'forgot_password' %></p>
21 <td width="47%" valign="top">
23 <% if session[:user] %>
24 <%= render_partial 'user_summary' %>
26 <h2>Election Administrators</h2>
27 <p>You must have an account to start a new election or to administer an
28 existing vote. You can log in or create a new account below.</p>
30 <%= render_partial 'basic_login' %>