This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
var required1 = false; | |
var required2 = false; | |
var required3 = false; | |
var required4 = false; | |
$('.button').click(function() | |
{ | |
if ($('.required-details').css('display') !== 'none') | |
{ | |
($('.required-personal').each(function(index, e) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
/* begin session */ | |
session_start(); | |
/*first check that both the username,password and form token have been sent */ | |
if(!isset($_POST['user_login'], $_POST['pass'])) | |
{ | |
return 'please enter a valid username and password'; |
NewerOlder