2022-09-27 01:58:32 +00:00
|
|
|
<?php
|
|
|
|
$self->extends('master');
|
|
|
|
|
|
|
|
$self->header_title = 'flash.moe / whois';
|
|
|
|
$self->header_logo_flash = 'flash.moe ';
|
|
|
|
$self->header_logo_wave = 'whois';
|
|
|
|
$self->header_minimal = true;
|
|
|
|
$self->footer_copy_start = '2013';
|
|
|
|
|
|
|
|
$self->block('container', function($self) {
|
|
|
|
?>
|
|
|
|
<div class="whois-container">
|
|
|
|
<form class="whois-lookup-form" method="get" action="">
|
2023-05-28 18:34:43 +00:00
|
|
|
<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>
|
|
|
|
<?php
|
|
|
|
});
|