24 lines
803 B
PHP
24 lines
803 B
PHP
|
<?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="">
|
||
|
<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"/>
|
||
|
</form>
|
||
|
|
||
|
<div class="whois-result" id="lookup-result"></div>
|
||
|
</div>
|
||
|
|
||
|
<script type="text/javascript" src="/assets/2021whois.js"></script>
|
||
|
<?php
|
||
|
});
|