-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathtopbar.php
More file actions
36 lines (24 loc) · 1019 Bytes
/
Copy pathtopbar.php
File metadata and controls
36 lines (24 loc) · 1019 Bytes
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
35
36
<?php
include('global.php');
?>
<header>
<div class="topbar <?php echo $sitetheme ?>">
<div>
<a href="/">
<img class="logo-mini <?php echo $sitetheme ?>" src="img/logo.png" width="67.5" height="40">
</a>
<form method="GET" action="search.php">
<div class="topbar-search-box <?php echo $sitetheme ?>" style="display: inline-block;">
<input type="text" name="q">
<select name="cat">
<option value="search">Albums</option>
<option value="artists">Artists</option>
<option value="labels">Labels</option>
</select>
</div>
<input type="submit" class="btn1" name="type" value="search" onclick="loadingDialog('')">
<input type="submit" class="btn2" name="type" value="lucky">
</form>
</div>
</div>
</header>