flash.moe/templates/whois.twig

26 lines
1,010 B
Twig
Raw Normal View History

2023-10-12 18:45:11 +00:00
{% extends 'master.twig' %}
2022-09-27 01:58:32 +00:00
2023-10-12 18:45:11 +00:00
{% set header_title = 'flash.moe / whois' %}
{% set header_logo_flash = 'flash.moe ' %}
{% set header_logo_wave = 'whois' %}
{% set header_minimal = true %}
{% set footer_copy_start = '2013' %}
2022-09-27 01:58:32 +00:00
2023-10-12 18:45:11 +00:00
{% block container %}
2022-09-27 01:58:32 +00:00
<div class="whois-container">
<form class="whois-lookup-form" method="get" action="">
<input class="whois-lookup-form-input" type="text" name="domain" placeholder="Enter a domain or IP address to look up!" value="" id="lookup-input">
<input class="whois-lookup-form-submit" type="submit" value="Look up" id="lookup-submit">
2022-09-27 01:58:32 +00:00
</form>
2022-09-29 22:27:07 +00:00
<div class="whois-result-container">
<div class="whois-result-tabs" id="lookup-tabs"></div>
<div class="whois-result" id="lookup-result">
<noscript>You need JavaScript in order to use this page.</noscript>
</div>
</div>
2022-09-27 01:58:32 +00:00
</div>
<script type="text/javascript" src="/assets/2021whois.js"></script>
2023-10-12 18:45:11 +00:00
{% endblock %}