aboutsummaryrefslogtreecommitdiffstats
path: root/templates/web/base/questionnaire/creator_fixed.html
blob: 754800bab9cee0df78ecf6b5114b02300dc82641 (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', bodyclass = 'authpage', 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 class="segmented-control segmented-control--radio">
    <input type="radio" name="reported" id="reported_yes" value="Yes"[% ' checked' IF reported == 'Yes' %]>
    <label class="btn" for="reported_yes">[% loc('Reported before') %]</label>
    <input type="radio" name="reported" id="reported_no" value="No"[% ' checked' IF reported == 'No' %]>
    <label class="btn" for="reported_no">[% loc('First time') %]</label>
</p>

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

</form>

[% INCLUDE 'footer.html' %]