blob: 97bd1f4b58ea118742877f27b554ef1872f3cc02 (
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
32
33
34
|
<?php
function html_navigation_bar()
{
echo '' ?>
<section class="navbar">
<a href="/" class="brand" style="color:black;text-decoration:none;">
<img src="/static/img/brand/mini.webp" alt="">
<h2 style="margin-left:8px;font-size:24px;"><b><?php echo "alright.party" ?></b></h2>
</a>
<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 ;
}
|