����JFIF��x�x����'
Server IP : 66.29.137.217 / Your IP : 52.14.244.195 Web Server : LiteSpeed System : Linux premium294.web-hosting.com 4.18.0-513.11.1.lve.el8.x86_64 #1 SMP Thu Jan 18 16:21:02 UTC 2024 x86_64 User : gltevjme ( 1095) PHP Version : 7.0.33 Disable Function : NONE MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : ON | Sudo : OFF | Pkexec : OFF Directory : /home/gltevjme/greatlifehub.ng/glfiles.name.ng/themes/spirit/views/ |
Upload File : |
{% extends "partial/layout.html.twig" %} {% block title %}{{ t("link_checker_page_name", "Link Checker") }}{% endblock %} {% block description %}{{ t("link_checker_meta_description", "Check multiple download links at the same time.") }}{% endblock %} {% block keywords %}{{ t("link_checker_meta_keywords", "link, checker, copyright, infringement, file, hosting") }}{% endblock %} {% block body %} <section> <div class="container form-full-width"> <div class="row"> <div class="col-md-12"> <h1>{{ t("link_checker_page_name", "Link Checker") }}</h1> <hr> </div> </div> <div class="row justify-content-between link-checker"> <div class="col-md-9"> {% if msg_page_errors is defined %} <div class="alert bg--error"> <div class="alert__body"><i class="fa fa-exclamation-triangle color--error"></i> {% if msg_page_errors is defined %}{{ msg_page_errors|join('. ') }}{% endif %}</div> </div> {% elseif msg_page_successes is defined %} <div class="alert bg--success"> <div class="alert__body"><i class="fa fa-check color--success"></i> {% if msg_page_successes is defined %}{{ msg_page_successes|join('. ') }}{% endif %}</div> </div> {% endif %} <p>{{ t("link_checker_intro", "Use this page to check whether multiple download links are still active. Enter up to 200 urls below, a new one on each line and click 'Check Files'") }}</p> {% if checkedUrls|length > 0 %} <ul> {% for url,status in checkedUrls %} <li><i class="fas fa-{{ status == 'active'?'check':'times' }} text-{{ status == 'active'?'success':'danger' }}"></i> {{ url }}</li> {% endfor %} </ul> <br/> <a href="{{ WEB_ROOT }}/link_checker">« {{ t('search_again', 'Search again') }}</a> {% else %} <form method="post" role="form" action="{{ CORE_SITE_PATH }}/link_checker" autocomplete="off"> <!-- fix for chrome auto complete not working --> <input style="display:none"><input type="password" style="display:none"> <div class="row"> <div class="col-md-12"> <span>{{ t('link_checker_list_of_file_download_urls', 'List of file download urls, 1 on each line.') }}</span> <textarea name="fileUrls" id="fileUrls" rows="5" autocomplete="off" required="required">{{ fileUrls }}</textarea> </div> <div class="col-md-5 col-lg-4"><br/> <button class="btn btn--primary type--uppercase" type="submit">{{ t("check_files", "check files")|title }}</button> </div> </div> <input type="hidden" value="1" name="submitme"/> </form> {% endif %} </div> <div class="col-md-3 text-center"> <img alt="Image" src="{{ theme.getFrontendImagePath() }}/link-checker-banner.png"/> </div> </div> </div> </section> {% endblock %}