-
Notifications
You must be signed in to change notification settings - Fork 9
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #441 from alphagov/report-a-problem-improvements
Report-a-problem improvements
- Loading branch information
Showing
6 changed files
with
82 additions
and
65 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,28 +1,34 @@ | ||
<!-- report_a_problem --> | ||
<div class="report-a-problem-container"> | ||
<h2>Help us improve GOV.UK</h2> | ||
<form accept-charset="UTF-8" action="/contact/govuk/problem_reports" method="post"> | ||
<div style="margin:0;padding:0;display:inline"><input name="utf8" type="hidden" value="✓"></div> | ||
<input id="url" name="url" type="hidden" value="<%= h request_url %>"> | ||
<% if defined?(source) %> | ||
<input id="source" name="source" type="hidden" value="<%= source %>"> | ||
<% end %> | ||
<% if defined?(page_owner) %> | ||
<input id="page_owner" name="page_owner" type="hidden" value="<%= page_owner %>"> | ||
<% end %> | ||
<div class="report-a-problem-inner"> | ||
<div class="report-a-problem-content"> | ||
<h2>Help us improve GOV.UK</h2> | ||
<form accept-charset="UTF-8" action="/contact/govuk/problem_reports" method="post"> | ||
<div style="margin:0;padding:0;display:inline"><input name="utf8" type="hidden" value="✓"></div> | ||
<input id="url" name="url" type="hidden" value="<%= h request_url %>"> | ||
<% if defined?(source) %> | ||
<input id="source" name="source" type="hidden" value="<%= source %>"> | ||
<% end %> | ||
<% if defined?(page_owner) %> | ||
<input id="page_owner" name="page_owner" type="hidden" value="<%= page_owner %>"> | ||
<% end %> | ||
|
||
<p>Please don't include any personal or financial information, | ||
for example your National Insurance or credit card numbers.</p> | ||
<p>Please don't include any personal or financial information, | ||
for example your National Insurance or credit card numbers.</p> | ||
|
||
<label for="what_doing">What you were doing</label> | ||
<input id="what_doing" name="what_doing" type="text" /> | ||
|
||
<label for="what_wrong">What went wrong</label> | ||
<input id="what_wrong" name="what_wrong" type="text" /> | ||
<label for="what_doing">What you were doing</label> | ||
<input id="what_doing" name="what_doing" type="text" /> | ||
|
||
<div><button name="commit" type="submit" class="button">Send</button></div> | ||
<label for="what_wrong">What went wrong</label> | ||
<input id="what_wrong" name="what_wrong" type="text" /> | ||
|
||
<!--<p>If you have more extensive feedback, please visit the <a href="/feedback">support page</a>.</p>--> | ||
</form> | ||
<div class="button-wrapper"> | ||
<button name="commit" type="submit" class="button">Send</button> | ||
</div> | ||
|
||
<!--<p>If you have more extensive feedback, please visit the <a href="/feedback">support page</a>.</p>--> | ||
</form> | ||
</div> | ||
</div> | ||
</div> | ||
<!-- end report_a_problem --> |