02-14-2018, 12:53 PM
Not as elegant, but you can create a column called second_form in the users table and basically create a second page with all the info you want to collect on there. Then put something in usersc/includes/head_tags.php that says
Then on successful submission of that form, it just sets that to a 1 in their user table and they'll never see that form again.
We do need to update that, but that's a quick and solid fix.
Code:
if($user->data()->second_form != 1){Redirect::to('second_form.php');}
Then on successful submission of that form, it just sets that to a 1 in their user table and they'll never see that form again.
We do need to update that, but that's a quick and solid fix.