HEX
Server: Apache/2.4.6 (CentOS) OpenSSL/1.0.2k-fips PHP/7.4.30
System: Linux iZj6c1151k3ad370bosnmsZ 3.10.0-1160.76.1.el7.x86_64 #1 SMP Wed Aug 10 16:21:17 UTC 2022 x86_64
User: root (0)
PHP: 7.4.30
Disabled: NONE
Upload Files
File: /var/www/html/phpmyfaq/assets/themes/default/templates/contact.html
<section class="col-12">
  <h1>{{ pageHeader }}</h1>
  <p>{{ msgContactOwnText }}</p>
  <p>
    {{ msgContactPrivacyNote }}
    <a title="{{ msgPrivacyNote }}" href="{{ privacyURL }}" target="_blank" rel="noopener"> {{ msgPrivacyNote }} </a>
  </p>
  <p><strong>{{ msgContactEMail }}</strong></p>

  <div id="loader"></div>
  <div id="contacts"></div>

  <form id="formValues" action="#" method="post">
    <input type="hidden" name="lang" id="lang" value="{{ lang }}" />

    <div class="form-group row">
      <label class="col-sm-3 form-control-label" for="name">{{ msgNewContentName }}</label>
      <div class="col-sm-9">
        <input type="text" class="form-control" name="name" id="name" value="{{ defaultContentName }}" required />
      </div>
    </div>

    <div class="form-group row">
      <label class="col-sm-3 form-control-label" for="email">{{ msgNewContentMail }}</label>
      <div class="col-sm-9">
        <input type="email" class="form-control" name="email" id="email" value="{{ defaultContentMail }}" required />
      </div>
    </div>

    <div class="form-group row">
      <label class="col-sm-3 form-control-label" for="question">{{ msgMessage }}</label>
      <div class="col-sm-9">
        <textarea class="form-control" cols="37" rows="5" name="question" id="question" required></textarea>
      </div>
    </div>

    {{ captchaFieldset }}

    <div class="form-group row">
      <div class="col-sm-12 text-right">
        <button class="btn btn-primary btn-lg" type="submit" id="submitcontact">{{ msgS2FButton }}</button>
      </div>
    </div>
  </form>

  <!-- PLEASE DO NOT REMOVE THE COPYRIGHT NOTICE - THANK YOU -->
  <div class="text-center">
    <hr />
    <small>
      Template by <a href="https://www.rinne.info">Thorsten Rinne</a><br />
      Original phpMyFAQ logo by <b>Lieven Op De Beeck</b><br />
      <a
        href="https://itunes.apple.com/app/phpmyfaq/id977896957"
        style="
          display: inline-block;
          overflow: hidden;
          background: url(https://linkmaker.itunes.apple.com/images/badges/en-us/badge_appstore-lrg.svg) no-repeat;
          width: 165px;
          height: 40px;
          margin: 10px;
        "
      ></a
      ><br />
      &copy; 2001-2023 by
      <a target="_blank" rel="noopener" href="https://www.phpmyfaq.de/">phpMyFAQ Team</a> under the
      <a target="_blank" rel="noopener" href="http://www.mozilla.org/MPL/2.0/">Mozilla Public License 2.0</a>. All
      rights reserved.<br />
    </small>
  </div>
  <!-- PLEASE DO NOT REMOVE THE COPYRIGHT NOTICE - THANK YOU -->
</section>

<script>
  document.addEventListener('DOMContentLoaded', () => {
    'use strict';
    $('#submitcontact').on('click', () => {
      saveFormValues('sendcontact', 'contact');
    });
    $('form#formValues').submit(() => {
      return false;
    });
  });
</script>