hice algo pequeño para probar
HTML
Código HTML:
<!DOCTYPE html>
<html>
<head>
<title></title>
<link rel="stylesheet" href="http://code.jquery.com/mobile/1.0/jquery.mobile-1.0.min.css" />
<script src="http://code.jquery.com/jquery-1.6.4.min.js"></script>
<script src="http://code.jquery.com/mobile/1.0/jquery.mobile-1.0.min.js"></script>
</head>
<body>
<form action="login.php" method="post" data-ajax="false">
<label>Mail:</label>
<input type="text" name="mail" id="mail" required>
<label>Password:</label>
<input type="password" name="pass" id="pass" required>
<button type="submit" id="send">Enviar</button>
</form>
</body>
</html>
archivo de login.php, como no tengo base de datos, deje fijo los valores del mail y del password
Código PHP:
<?php
$mail=$_POST['mail'];
$pass=$_POST['pass'];
if ($mail=='usuario' and $pass=='12345') {
echo "<script>location.href='index2.php'</script>";
}
else{
echo "<script>alert('Error');</script>";
echo "<script>location.href='index.html'</script>";
}
index2.php
Código PHP:
<html>
<head>
<title></title>
<link rel="stylesheet" href="http://code.jquery.com/mobile/1.0/jquery.mobile-1.0.min.css" />
<script src="http://code.jquery.com/jquery-1.6.4.min.js"></script>
<script src="http://code.jquery.com/mobile/1.0/jquery.mobile-1.0.min.js"></script>
</head>
<body>
<p>Hola</p>
</body>
</html>