src/Products/NotificationsBundle/Resources/views/portal/opt_in/main.html.twig line 1

Open in your IDE?
  1. {% extends '@ProductsNotifications/portal/opt_in/base.html.twig' %}
  2. {% block faqs %}
  3.     <div class="row justify-content-md-center">
  4.         <div class="col-4 small">
  5.             <p class="form-mutedtxt">
  6.                 SchoolStatus allows schools and school districts to contact you through text, calls, voice messages, and emails.
  7.             </p>
  8.             <p class="form-mutedtxt">
  9.                 You can cancel the SMS service at any time. Just text "STOP" to the short code. After you send the SMS message "STOP" to us, we will send you an SMS message to confirm that you have been unsubscribed. After this, you will no longer receive SMS messages from us. If you want to join again, just sign up as you did the first time and we will start sending SMS messages to you again.
  10.             </p>
  11.             <p class="form-mutedtxt">
  12.                 Carriers are not liable for delayed or undelivered messages.
  13.             </p>
  14.             <p class="form-mutedtxt">
  15.                 As always, message and data rates may apply for any messages sent to you from us and to us from you. If you have any questions about your text plan or data plan, it is best to contact your wireless provider.
  16.             </p>
  17.             <p class="form-mutedtxt">
  18.                 If you have any questions regarding privacy, please read our privacy policy: <a href="https://www.schoolstatus.com/privacy">SchoolStatus Privacy Policy</a>
  19.             </p>
  20.             <p class="form-mutedtxt">
  21.                 Message frequency may vary.
  22.             </p>
  23.         </div>
  24.     </div>
  25. {% endblock %}
  26. {% block content %}
  27.     {{ form_start(form) }}
  28.         <div class="mp-signin">
  29.             <h2>Stay connected</h2>
  30.             <h3>Opt-in to receive messages from your child's school and teachers.</h3>
  31.             {{ form_errors(form) }}
  32.             <div class="mp-formgroup">
  33.                 <div class="input-group">
  34.                     {{ form_widget(form.contact, {
  35.                         attr: {
  36.                             placeholder: 'Enter email address or phone number',
  37.                             class: 'form-control',
  38.                         },
  39.                     }) }}
  40.                     <small class="text-danger">
  41.                         {{ form_errors(form.contact) }}
  42.                     </small>
  43.                 </div>
  44.                 <div class="input-group mt-3">
  45.                     <div class="row">
  46.                         <div class="col-2">
  47.                             {{ form_widget(form.terms, {
  48.                                 attr: {
  49.                                     class: 'mt-3',
  50.                                 },
  51.                             }) }}
  52.                         </div>
  53.                         <div class="col-10">
  54.                             {{ form_label(form.terms, 'I accept the SchoolStatus <a style="color: rgb(31, 136, 195);" href="https://www.schoolstatus.com/terms-and-conditions">Terms of Service</a> and have read the SchoolStatus <a style="color: rgb(31, 136, 195);" href="https://www.schoolstatus.com/privacy">Privacy Policy<a/>', {
  55.                                 label_attr: {
  56.                                     style: 'font-size: 0.75em;'
  57.                                 },
  58.                                 label_html: true,
  59.                             }) }}
  60.                         </div>
  61.                     </div>
  62.                     <small class="text-danger">
  63.                         {{ form_errors(form.terms) }}
  64.                     </small>
  65.                 </div>
  66.                 <div class="mt-3">
  67.                     {{ form_widget(form.recaptcha) }}
  68.                     <small class="text-danger">
  69.                         {{ form_errors(form.recaptcha) }}
  70.                     </small>
  71.                 </div>
  72.                 {% include '@ui2022/button--form.html.twig' with {
  73.                     type: 'submit',
  74.                     text: 'Submit',
  75.                     styles: 'primary block',
  76.                 } %}
  77.             </div>
  78.         </div>
  79.     {{ form_rest(form) }}
  80.     {{ form_end(form) }}
  81. {% endblock %}