diff options
-rw-r--r-- | app/views/user/contact.rhtml | 30 |
1 files changed, 14 insertions, 16 deletions
diff --git a/app/views/user/contact.rhtml b/app/views/user/contact.rhtml index e6736dfd3..3329ba6ca 100644 --- a/app/views/user/contact.rhtml +++ b/app/views/user/contact.rhtml @@ -13,35 +13,33 @@ </div> <p> - <label class="form_label"><%= _("From") %>:</label> - <%= h(@user.name_and_email) %> + <label class="form_label"><%= _("From") %>:</label> + <%= h(@user.name_and_email) %> </p> <p> - <label class="form_label" for="contact_subject"><%= _("Subject") %>:</label> - <%= f.text_field :subject, :size => 50 %> + <label class="form_label" for="contact_subject"><%= _("Subject") %>:</label> + <%= f.text_field :subject, :size => 50 %> </p> <p> <label class="form_label" for="contact_message"><%= _("Message") %>:</label> - <%= f.text_area :message, :rows => 10, :cols => 50 %> + <%= f.text_area :message, :rows => 10, :cols => 50 %> </p> <p class="form_note"> - <% if @user == @recipient_user %> - <%= _('<strong>Note:</strong> You\'re sending a message to yourself, presumably - to try out how it works.')%> - <% else %> - <%= _(' <strong>Privacy note:</strong> Your email address will be given to')%> - <%= user_link(@recipient_user) %><%= _(' when you send this message.')%> - <% end %> + <% if @user == @recipient_user %> + <%= _('<strong>Note:</strong> You\'re sending a message to yourself, presumably + to try out how it works.')%> + <% else %> + <%= _(' <strong>Privacy note:</strong> Your email address will be given to')%> + <%= user_link(@recipient_user) %><%= _(' when you send this message.')%> + <% end %> </p> <div class="form_button"> - <%= hidden_field_tag(:submitted_contact_form, { :value => 1 } ) %> - <%= submit_tag _("Send message") %> + <%= hidden_field_tag(:submitted_contact_form, { :value => 1 } ) %> + <%= submit_tag _("Send message") %> </div> <% end %> - - |