PHP-OOP-Login-and-Register icon indicating copy to clipboard operation
PHP-OOP-Login-and-Register copied to clipboard

Missing name for token

Open m0lmk opened this issue 5 years ago • 0 comments

In register.php, the hidden token field has no name:

<input type="hidden" value="<?php echo Token::generate(); ?>" />

Should it be:

<input type="hidden" name="token" value="<?php echo Token::generate(); ?>" />

I needed to add that to get it to work!

m0lmk avatar Oct 29 '19 22:10 m0lmk