<%= error_messages_for 'message' %>
-<%= start_form_tag :controller => 'message', :action => 'new' %>
+<% form_tag :controller => 'message', :action => 'new' do %>
subject: <%= text_field 'message', 'title' %><br>
body: <%= text_area 'message', 'body' %><br>
<%= submit_tag 'Send' %>
-<% end_form_tag %>
+<% end %>
<br />
-<%= link_to 'Back to my account', :controller => 'user', :action => 'account' %>
+<%= link_to 'Back to inbox', :controller => 'message', :action => 'inbox', :display_name => @user.display_name %>