There is a form of type:
<form method="POST" action="<? echo $_SERVER['PHP_SELF']; ?>"class="cd-form"> <p class="fieldset"> <input class="full-width has-padding" id="auth" type="submit" value="Create account"> </p> </form> Based on this code:
<?if(isset($_POST['auth'])) { echo 'Yes'; } else { echo 'No';} ?> The button with the auth identifier, when clicked, should display the value: Yes , but it is not, why? and how to fix?
The registration / authorization form is taken from here: https://codyhouse.co/gem/loginsignup-modal-window/