</div>
</div>
+ <div class="form-check mt-3">
+ <input class="form-check-input" type="checkbox" name="email_notify" id="email_notify"
+ [% IF ahr.email_notify == 't' %] checked [% END %] />
+ <label class="form-check-label" for="email_notify">[% l('Email notification') %]</label>:
+ [% IF !ctx.user.email;
+ l('<br>No configured Email address. See "My Account" for setting your Email address.');
+ ELSE; ctx.user.email;
+ END %]
+ </div>
+
+ <div class="form-group">
+ <label for="phone_notify">[% l('Phone notification - Enter phone number') %]</label>
+ <input type="text" class="form-control" name="phone_notify" id="phone_notify"
+ value="[% ahr.phone_notify | html %]" />
+ </div>
+
+ [% IF ctx.get_org_setting(ctx.search_ou, 'sms.enable') == 1%]
+ <div class="form-group">
+ <label for="sms_notify">[% l('SMS notification - Enter mobile phone number') %]</label>
+ <input onblur="check_sms_carrier(event)" type="text" class="form-control" name="sms_notify" id="sms_notify"
+ value="[% ahr.sms_notify | html %]" />
+ </div>
+ <div class="form-group">
+ <label for="sms_carrier">[% l('Mobile carrier') %]</label>
+ [% INCLUDE "opac/parts/sms_carrier_selector.tt2" ahr, sms_carrier_hide_warning="true", sms_carrier_hide_label="true" %]
+ </div>
+ [% END %]
[% END %]