Cytat(Raito @ 13.02.2015, 19:45:51 )

Nie wiem czy to coś zmieni, ale masz w formie namieszane z divami i spróbuj zmienić na input type="submit". Potem pokaż aktualny kod.
przecież mam sumbit (IMG:
style_emoticons/default/biggrin.gif)
Kod:
<?php
if(isset($_GET['action']) && $_GET['action'] == "login") { if(isset($_POST['login'])) { if(isset($_POST['username']) && ($_POST['username'] == 'test') && isset($_POST['password']) && ($_POST['password'] == 'test')) { $_SESSION['Authenticated'] = 1;
}else{
?>
<script>alert("Zły login lub hasło!");</script>
<?php
$_SESSION['Authenticated'] = 0;
}
header('Location: index.php'); }
}elseif(isset($_GET['action']) && $_GET['action'] == "logout") { header('Location: auth.php?action=login'); }
if(isset($_SESSION['Authenticated']) && ($_SESSION['Authenticated'] == 1
)) { header('Location: index.php'); }elseif(isset($_SESSION['Authenticated']) && ($_SESSION['Authenticated'] == 0
)) { echo $_SESSION['Authenticated']; ?>
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta name="description" content="">
<meta name="author" content="Dashboard">
<meta name="keyword" content="CS-Skins, Skiny cs za sms, skiny sms, cs go sms">
<title>Panel Administratora | CS-Skins.pl</title>
<!-- Bootstrap core CSS -->
<link href="assets/css/bootstrap.css" rel="stylesheet">
<!--external css-->
<link href="assets/font-awesome/css/font-awesome.css" rel="stylesheet" />
<!-- Custom styles for this template -->
<link href="assets/css/style.css" rel="stylesheet">
<link href="assets/css/style-responsive.css" rel="stylesheet">
<!-- HTML5 shim and Respond.js IE8 support of HTML5 elements and media queries -->
<!--[if lt IE 9]>
<script src="https://oss.maxcdn.com/libs/html5shiv/3.7.0/html5shiv.js"></script>
<script src="https://oss.maxcdn.com/libs/respond.js/1.4.2/respond.min.js"></script>
<![endif]-->
</head>
<body onload="getTime()">
<!-- ********************************************************************************
**************************************************************************
MAIN CONTENT
********************************************************************************
*************************************************************************** -->
<div class="container">
<div id="showtime"></div>
<div class="col-lg-4 col-lg-offset-4">
<div class="lock-screen">
<h2><a data-toggle="modal" href="#myModal"><i class="fa fa-lock"></i></a></h2>
<p>Odblokuj</p>
<!-- Modal -->
<div aria-hidden="true" aria-labelledby="myModalLabel" role="dialog" tabindex="-1" id="myModal" class="modal fade">
<div class="modal-dialog">
<div class="modal-content">
<div class="modal-header">
<button type="button" class="close" data-dismiss="modal" aria-hidden="true">×</button>
<h4 class="modal-title">Witamy!</h4>
</div>
<div class="modal-body">
<p class="centered"><img class="img-circle" width="80" src="assets/img/ui-sam.jpg"></p>
<form action="auth.php?action=login" method="post">
<input type="text" name="username" id="username" placeholder="username" autocomplete="off" class="form-control placeholder-no-fix">
<input type="password" name="password" id="password" placeholder="Password" autocomplete="off" class="form-control placeholder-no-fix">
</div>
<div class="modal-footer centered">
<button data-dismiss="modal" class="btn btn-theme04" type="button">Cancel</button>
<button class="btn btn-theme03" type="submit">Login</button>
</form>
</div>
</div>
</div>
</div>
<!-- modal -->
</div><! --/lock-screen -->
</div><!-- /col-lg-4 -->
</div><!-- /container -->
<!-- js placed at the end of the document so the pages load faster -->
<script src="assets/js/jquery.js"></script>
<script src="assets/js/bootstrap.min.js"></script>
<!--BACKSTRETCH-->
<!-- You can use an image of whatever size. This script will stretch to fit in any screen size.-->
<script type="text/javascript" src="assets/js/jquery.backstretch.min.js"></script>
<script>
$.backstretch("assets/img/login-bg.jpg", {speed: 500});
</script>
<script>
function getTime()
{
var today=new Date();
var h=today.getHours();
var m=today.getMinutes();
var s=today.getSeconds();
// add a zero in front of numbers<10
m=checkTime(m);
s=checkTime(s);
document.getElementById('showtime').innerHTML=h+":"+m+":"+s;
t=setTimeout(function(){getTime()},500);
}
function checkTime(i)
{
if (i<10)
{
i="0" + i;
}
return i;
}
</script>
</body>
</html>
<?php
}else{
}
?>
Ten post edytował bartek4175 13.02.2015, 19:47:55