-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.php
64 lines (48 loc) · 1.1 KB
/
index.php
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
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
<!DOCTYPE html>
<html>
<head>
<title>Download page</title>
<meta charset = "UTF-8" >
<link rel= "stylesheet" type ="text/css" href="css/index.css">
<style type="text/css">
</style>
</head>
<body>
<?php
session_start();
echo "<p style='color:#d7d080;'>". "Üdvőzőlünk :"."Kela-team" ;//$_SESSION['nev'];
?>
<header>
<div id="headerDiv">
<div id="logoDiv">
<img src="img/Logo1.png" id="logo">
<span id="titleText">Kela torrent</span>
</div>
<ul id="nav">
<li>
</li>
<a href="home.php" >Home</a>
<li>
<a href="download.php" >Download</a>
</li>
<li>
<a href="upload.php" >Upload</a>
</li>
<li>
<a href="rules.php" >Rules</a>
</li>
</ul>
</div>
</header>
<!-- Kereses -->
<div id="searchDiv">
<div id="lineDiv">
<p id="searchText">Torrent search</p>
</div>
<form id="searchForm">
<input type="search" name="serachInput" id="searchInput" placeholder="Write something...">
<button type="submit" form = "searchForm" value="Search" id="searchBtn"> Search </button>
</form>
</div>
</body>
</html>