View | Details | Raw Unified | Return to bug 20819
Collapse All | Expand All

(-)a/koha-tmpl/opac-tmpl/bootstrap/en/modules/opac-memberentry.tt (-1 / +1 lines)
Lines 899-905 Link Here
899
                        <legend>GDPR consent</legend>
899
                        <legend>GDPR consent</legend>
900
                        <ol>
900
                        <ol>
901
                        <li>
901
                        <li>
902
                            <label></label><span><input type="checkbox" name="borrower_gdpr_proc_consent" value="agreed"> I agree with your processing of my personal data as outlined in the <a target="_blank" href="[% PrivacyPolicyURL %]">privacy policy</a>. <span class="required">Required</span></span>
902
                            <label></label><span><input type="checkbox" name="borrower_gdpr_proc_consent" value="agreed"> I agree with your processing of my personal data as outlined in the <a target="_blank" href="[% PrivacyPolicyURL | url %]">privacy policy</a>. <span class="required">Required</span></span>
903
                        </li>
903
                        </li>
904
                        </ol>
904
                        </ol>
905
                    </fieldset>
905
                    </fieldset>
(-)a/koha-tmpl/opac-tmpl/bootstrap/en/modules/opac-patron-consent.tt (-6 / +5 lines)
Lines 1-7 Link Here
1
[% USE Koha %]
1
[% USE Koha %]
2
[% SET consentview = 1 %]
2
[% SET consentview = 1 %]
3
[% INCLUDE 'doc-head-open.inc' %]
3
[% INCLUDE 'doc-head-open.inc' %]
4
<title>[% IF ( LibraryNameTitle ) %][% LibraryNameTitle %][% ELSE %]Koha online[% END %] catalog &rsaquo; Your consents</title>
4
<title>[% IF ( LibraryNameTitle ) %][% LibraryNameTitle | html %][% ELSE %]Koha online[% END %] catalog &rsaquo; Your consents</title>
5
[% INCLUDE 'doc-head-close.inc' %]
5
[% INCLUDE 'doc-head-close.inc' %]
6
[% BLOCK cssinclude %][% END %]
6
[% BLOCK cssinclude %][% END %]
7
</head>
7
</head>
Lines 11-17 Link Here
11
<div class="main">
11
<div class="main">
12
    <ul class="breadcrumb">
12
    <ul class="breadcrumb">
13
        <li><a href="/cgi-bin/koha/opac-main.pl">Home</a> <span class="divider">&rsaquo;</span></li>
13
        <li><a href="/cgi-bin/koha/opac-main.pl">Home</a> <span class="divider">&rsaquo;</span></li>
14
        <li><a href="/cgi-bin/koha/opac-user.pl">[% patron.firstname %] [% patron.surname %]</a> <span class="divider">&rsaquo;</span></li>
14
        <li><a href="/cgi-bin/koha/opac-user.pl">[% patron.firstname | html %] [% patron.surname | html %]</a> <span class="divider">&rsaquo;</span></li>
15
        <li><a href="#">Your consents</a></li>
15
        <li><a href="#">Your consents</a></li>
16
    </ul>
16
    </ul>
17
17
Lines 38-51 Link Here
38
                        [% IF Koha.Preference('GDPR_Policy') %]
38
                        [% IF Koha.Preference('GDPR_Policy') %]
39
                            <h5>GDPR consents</h5>
39
                            <h5>GDPR consents</h5>
40
                            <input type="hidden" name="op" value="gdpr_proc_save"/>
40
                            <input type="hidden" name="op" value="gdpr_proc_save"/>
41
                            <input type="hidden" name="borrowernumber" value="[% patron.borrowernumber %]"/>
41
                            <input type="hidden" name="borrowernumber" value="[% patron.borrowernumber | html %]"/>
42
                            <fieldset>
42
                            <fieldset>
43
                                <ul><li>
43
                                <ul><li>
44
                                    <p>I have read the <a target="_blank" href="[% Koha.Preference('PrivacyPolicyURL') %]">privacy policy</a> and agree with your processing of my personal data as outlined therein.</p>
44
                                    <p>I have read the <a target="_blank" href="[% Koha.Preference('PrivacyPolicyURL') | url %]">privacy policy</a> and agree with your processing of my personal data as outlined therein.</p>
45
                                    <p><input type="radio" name="gdpr_processing" value="agreed"> Yes, I agree.<br>
45
                                    <p><input type="radio" name="gdpr_processing" value="agreed"> Yes, I agree.<br>
46
                                    <input type="radio" name="gdpr_processing" value="disagreed"> No, I do not agree. Please remove my account within a reasonable time.</p>
46
                                    <input type="radio" name="gdpr_processing" value="disagreed"> No, I do not agree. Please remove my account within a reasonable time.</p>
47
                                    [% IF gdpr_proc_consent %]
47
                                    [% IF gdpr_proc_consent %]
48
                                        <p>Your consent was registered on [% gdpr_proc_consent %].</p>
48
                                        <p>Your consent was registered on [% gdpr_proc_consent | html %].</p>
49
                                    [% END %]
49
                                    [% END %]
50
                                </li></ul>
50
                                </li></ul>
51
                            </fieldset>
51
                            </fieldset>
52
- 

Return to bug 20819