flash.moe/tpl/whois.php

24 lines
803 B
PHP
Raw Normal View History

2022-09-27 01:58:32 +00:00
<?php
$self->extends('master');
$self->header_title = 'flash.moe / whois';
$self->header_logo_flash = 'flash.moe&nbsp;';
$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
});