| OLD | NEW |
| 1 <h1>Register</h1> | 1 <h1>Register</h1> |
| 2 <%= start_form_tag({:action => "signup"}, :multipart => true) %> | 2 <% form_tag({:action => "signup"}, :multipart => true) do %> |
| 3 | 3 |
| 4 <div title="Account signup" id="signupform" class="form"> | 4 <div title="Account signup" id="signupform" class="form"> |
| 5 <h3>Family Administrator Registration</h3> | 5 <h3>Family Administrator Registration</h3> |
| 6 | 6 |
| 7 <%= error_messages_for 'user' %><br/> | 7 <%= error_messages_for 'user' %><br/> |
| 8 | 8 |
| 9 <%= render :partial => 'account/form' %> | 9 <%= render :partial => 'account/form' %> |
| 10 | 10 |
| 11 <input type="submit" value="Register »" class="primary" /><br/><br/> | 11 <input type="submit" value="Register »" class="primary" /><br/><br/> |
| 12 <p align="center">That's it! Click the <i>Register</i> button to finish.</p> | 12 <p align="center">That's it! Click the <i>Register</i> button to finish.</p> |
| 13 </div> | 13 </div> |
| 14 <%= end_form_tag %> | 14 <% end %> |
| 15 | 15 |
| OLD | NEW |