diff options
-rw-r--r-- | app/views/request/new.rhtml | 23 | ||||
-rw-r--r-- | app/views/user/_signin.rhtml | 4 | ||||
-rw-r--r-- | app/views/user/_signup.rhtml | 8 | ||||
-rw-r--r-- | public/stylesheets/main.css | 5 |
4 files changed, 30 insertions, 10 deletions
diff --git a/app/views/request/new.rhtml b/app/views/request/new.rhtml index 499745fee..7fb60cf6e 100644 --- a/app/views/request/new.rhtml +++ b/app/views/request/new.rhtml @@ -15,8 +15,23 @@ <% form_for(:info_request, @info_request, :html => { :id => 'writeForm' } ) do |f| %> - <label class="form_label" for="heading"> </label> - <h1>New public Freedom of Information request</h1> + <div id="request_advice"> + <h1>Read this before writing your Freedom of Information request</h1> + <ul> + <li>Use a <strong>search engine first</strong> to check that the information isn't already published. + </li> + <li>Write your request in <strong>simple, precise language</strong>. + <li>Browse <%= link_to "other requests", request_list_url %> for examples of how to word your request. + </li> + <li>Keep it <strong>focussed</strong>, if you ask for everything it might cost too much + and you might get nothing. + </li> + <li>Top tip: Ask for a <strong>particular document</strong> you have seen mentioned elsewhere. + </li> + <li>This site is <strong>public</strong>, everything you type (except your email address) and any response will be published. + </li> + </ul> + </div> <p> <label class="form_label" for="public_body_id">Public body:</label> @@ -38,7 +53,7 @@ <% fields_for :outgoing_message do |o| %> <p> - <label class="form_label" for="outgoing_message_body">Your letter:</label> + <label class="form_label" for="outgoing_message_body">Your request:</label> <%= o.text_area :body, :rows => 20, :cols => 60 %> </p> <% end %> @@ -51,7 +66,7 @@ <div class="form_button"> <%= hidden_field_tag(:submitted_new_request, { :value => 1 } ) %> - <%= submit_tag "Create public request >>" %> + <%= submit_tag "Make public Freedom of Information request >>" %> </div> </div> diff --git a/app/views/user/_signin.rhtml b/app/views/user/_signin.rhtml index 5dc9b5384..0d129645a 100644 --- a/app/views/user/_signin.rhtml +++ b/app/views/user/_signin.rhtml @@ -6,12 +6,12 @@ <h2>If you've used GovernmentSpy before</h2> <p> - <label class="form_label" for="user_signin_email"><strong>Your e-mail:</strong></label> + <label class="form_label" for="user_signin_email">Your e-mail:</label> <%= text_field 'user_signin', 'email', { :size => 20 } %> </p> <p> - <label class="form_label" for="user_signin_password"><strong>Password:</strong></label> + <label class="form_label" for="user_signin_password">Password:</label> <%= password_field 'user_signin', 'password', { :size => 15 } %> </p> diff --git a/app/views/user/_signup.rhtml b/app/views/user/_signup.rhtml index ae204bc1d..330d22f0a 100644 --- a/app/views/user/_signup.rhtml +++ b/app/views/user/_signup.rhtml @@ -6,7 +6,7 @@ <h2>If you're new to GovernmentSpy</h2> <p> - <label class="form_label" for="user_signup_email"><strong>Your e-mail:</strong></label> + <label class="form_label" for="user_signup_email">Your e-mail:</label> <%= text_field 'user_signup', 'email', { :size => 20 } %> </p> <div class="form_item_note"> @@ -14,7 +14,7 @@ </div> <p> - <label class="form_label" for="user_signup_name"><strong>Your name:</strong></label> + <label class="form_label" for="user_signup_name">Your name:</label> <%= text_field 'user_signup', 'name', { :size => 20 } %> </p> <div class="form_item_note">Your <strong>name will appear @@ -23,12 +23,12 @@ anonymous.</div> <p> - <label class="form_label" for="user_signup_password"><strong>Password:</strong></label> + <label class="form_label" for="user_signup_password">Password:</label> <%= password_field 'user_signup', 'password', { :size => 15 } %> </p> <p> - <label class="form_label" for="user_signup_password_confirmation"><strong>Password: (again)</strong></label> + <label class="form_label" for="user_signup_password_confirmation">Password: (again)</label> <%= password_field 'user_signup', 'password_confirmation', { :size => 15 } %> </p> diff --git a/public/stylesheets/main.css b/public/stylesheets/main.css index 6dc6a9f96..49e3cc4a3 100644 --- a/public/stylesheets/main.css +++ b/public/stylesheets/main.css @@ -145,6 +145,7 @@ select, input, textarea { text-align: right; padding-right: 0.5em; margin-bottom: 0.5em; + font-weight: bold; } .form_label { width: 16em; @@ -226,6 +227,10 @@ div.fieldWithErrors { display:inline; } float: right; } +#request_advice { + margin-left: 12em; +} + /* /list - browsing requests */ table#list_requests { border-collapse: collapse; |