blob: c5170af97d18aa7ff9a1cbb4c9b8b4491c165e7e (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
|
<?php
function html_navigation_bar()
{
echo '' ?>
<section class="navbar">
<h1>AlrightTV</h1>
<div class="links">
<a href="/emotes" class="button">Emotes</a>
<a href="/emotes/upload.php" class="button">Upload</a>
<a href="/login" class="button">Log in...</a>
</div>
</section>
<?php ;
}
function html_navigation_search()
{
echo '' ?>
<section class="box">
<div class="box navtab">
Search...
</div>
<div class="box content">
<form action="/emotes/search.php" method="get">
<input type="text" name="q" style="padding:4px;"><br>
<button type="submit" style="width:100%;margin-top:6px;">Find</button>
</form>
</div>
</section>
<?php ;
}
|