-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.php
36 lines (32 loc) · 1.55 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
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title>UEFA - vas saputnik za PES 2013</title>
<script type="text/javascript" src="ajax_zahtjev.js"></script>
<script type="text/javascript" src="provjera_logina.js"> </script>
<link rel="stylesheet" type="text/css" href="stilovi/index.css" />
<?php
session_start();
require_once("konekcija.php");
if (isset($_SESSION['username'])) { header("Location: profil.php"); die(); }
?>
</head>
<body>
<br/><br/>
<center><div id="header"> PRIJAVI SE </div></center>
<center><div id="sadrzaj">
<br />
<div id="upozorenje"> </div>
<input type="text" readonly="readonly" class="polje_header" value="Korisničko ime" /><br />
<input type="text" name="username" id="username" class="polje"/><br />
<input type="text" readonly="readonly" class="polje_header" value="Šifra" /><br />
<input type="password" name="password" id="password" class="polje" /><br />
<input type="button" value="Prijavi se" onclick="provjeri()" class="dugme_prijavi_se" /><br />
<center><div id="footer" style="margin-top:130px">
<a href="registracija.html"> <input type="button" value="Registruj se" class="dugme"/> </a><br /><br />
<span style="color:#F00; font-family:'Segoe UI',Arial,Helvetica,sans-serif; font-size:18px; font-weight:bold">Autori: Elmir Sukanović i Nadin Zajimović</span>
</div></center>
</div></center>
</body>
</html>