Koha/koha-tmpl/opac-tmpl/bootstrap/en/modules/opac-alert-subscribe.tt
Wainui Witika-Park 9db6630c61 Bug 27610: Changed pages of OPAC to have a <h1>
Changed each of the pages in the OPAC to have one <h1> tag showing that describes the page, rather than the <h1> describing the logo.

The hierarchy of heading tags may be broken in many pages, but this will be dealt with in a follow up patch or bug.

To test:
1) Go to the OPAC
2) Apply patch
3) Go to each of the pages and check that they have an obvious and
descriptive heading
4) Ensure that the heading in the page is <h1>

Sponsored by: Catalyst IT
Signed-off-by: Hayley Pelham <hayleypelham@catalyst.net.nz>
Signed-off-by: Henry Bolshaw <bolshawh@parliament.uk>
Signed-off-by: Martin Renvoize <martin.renvoize@ptfs-europe.com>

Signed-off-by: Jonathan Druart <jonathan.druart@bugs.koha-community.org>
2021-04-01 18:51:38 +02:00

57 lines
3.7 KiB
Text

[% USE Koha %]
[% INCLUDE 'doc-head-open.inc' %]
<title> [% IF ( typeissue ) %]Subscribe to a subscription alert [% ELSIF ( typeissuecancel ) %] Unsubscribe from a subscription alert [% END %] &rsaquo; [% IF ( LibraryNameTitle ) %][% LibraryNameTitle | html %][% ELSE %]Koha online[% END %] catalog</title>
[% INCLUDE 'doc-head-close.inc' %]
[% BLOCK cssinclude %][% END %]
</head>
[% INCLUDE 'bodytag.inc' bodyid='opac-alert-subscribe' %]
[% INCLUDE 'masthead.inc' %]
<div class="main">
<ul class="breadcrumb">
<li><a href="/cgi-bin/koha/opac-main.pl">Home</a></li>
<li><a href="/cgi-bin/koha/opac-detail.pl?biblionumber=[% biblionumber | uri %]">Details for [% bibliotitle | html %]</a></li>
<li><a href="#">[% IF ( typeissue ) %]Subscribe to a subscription alert [% ELSIF ( typeissuecancel ) %] Unsubscribe from a subscription alert [% END %]</a></li>
</ul>
<div class="container-fluid">
<div class="row">
<div class="col order-first order-md-first order-lg-2">
<div id="useralertsubscribe" class="maincontent">
<h1>Subscription alerts</h1>
[% IF ( typeissue ) %]
<h2>Subscribe to a subscription alert</h2>
<form action="opac-alert-subscribe.pl" method="post">
<p>Do you want to receive an email when a new issue for this subscription arrives?</p>
<h4>[% bibliotitle | html %]</h4>
[% IF ( notes ) %]<p>[% notes | html %]</p>[% END %]
<input type="hidden" name="subscriptionid" value="[% subscriptionid | html %]">
<input type="hidden" name="referer" value="[% referer | html %]">
<input type="hidden" name="biblionumber" value="[% biblionumber | html %]">
<input type="hidden" name="op" value="alert_confirmed">
<input type="submit" class="btn btn-primary" value="Yes">
<a class="cancel" href="opac-serial-issues.pl?biblionumber=[% biblionumber | html %]" >No</a>
</form>
[% END %]
[% IF ( typeissuecancel ) %]
<h2>Unsubscribe from a subscription alert</h2>
<form action="opac-alert-subscribe.pl" method="post">
<p>Please confirm that you do not want to receive email when a new issue arrives for this subscription.</p>
<h4>[% bibliotitle | html %]</h4>
[% IF ( notes ) %]<p>[% notes | html %]</p>[% END %]
<input type="hidden" name="subscriptionid" value="[% subscriptionid | html %]">
<input type="hidden" name="referer" value="[% referer | html %]">
<input type="hidden" name="biblionumber" value="[% biblionumber | html %]">
<input type="hidden" name="op" value="cancel_confirmed">
<input type="submit" value="Yes" class="btn btn-primary">
<a href="opac-serial-issues.pl?biblionumber=[% biblionumber | uri %]" class="cancel">No</a>
</form>
[% END %]
</div> <!-- / #useralertsubscribe -->
</div> <!-- / .span10/12 -->
</div> <!-- / .row -->
</div> <!-- / .container-fluid -->
</div> <!-- / .main -->
[% INCLUDE 'opac-bottom.inc' %]
[% BLOCK jsinclude %][% END %]