aboutsummaryrefslogtreecommitdiffstats
path: root/templates/web/default/questionnaire/creator_fixed.html
blob: 5b6d1254aa374b313b8bdcaae1c8ac031af4112c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
[% INCLUDE 'header.html', title = loc('Confirmation') %]

<form method="post" action="/questionnaire/submit" id="questionnaire">
<input type="hidden" name="problem" value="[% problem_id | html %]">

[% INCLUDE 'errors.html' %]

<p>
[% loc("Thanks, glad to hear it's been fixed! Could we just ask if you have ever reported a problem to a council before?") %]
</p>

<p align="center">
<input type="radio" name="reported" id="reported_yes" value="Yes"[% ' checked' IF reported == 'Yes' %]>
<label class="inline" for="reported_yes">[% loc('Yes') %]</label>
<input type="radio" name="reported" id="reported_no" value="No"[% ' checked' IF reported == 'No' %]>
<label class="inline" for="reported_no">[% loc('No') %]</label>
</p>

<p><input type="submit" name="submit" value="[% loc('Submit') %]"></p>

</form>

[% INCLUDE 'footer.html' %]