mirror of
https://github.com/sigmasternchen/drnk.me
synced 2025-03-15 09:48:54 +00:00
17 lines
375 B
PHP
17 lines
375 B
PHP
<?php
|
|
require(__DIR__ . "/../layout/top.php");
|
|
?>
|
|
|
|
<div class="page-header">
|
|
<h1>drnk.me</h1>
|
|
<h2>URL Shortener</h2>
|
|
</div>
|
|
|
|
<img class="bottle" src="/static/img/bottle.png" alt="picture of a vile with a tag 'Drnk Me'" />
|
|
|
|
<div class="center-panel">
|
|
<?php require(__DIR__ . "/fragments/url-form.php"); ?>
|
|
</div>
|
|
|
|
<?php
|
|
require(__DIR__ . "/../layout/bottom.php");
|