<form method="post" action="conRegistration.php">
<?php include ('ERROR.php') ; ?>
<p>Username: </p><input type="text" value=" required <?php echo $username; ?>">
<p>Email: </p><input type="text" value=" required <?php echo $email; ?>">
<p>Password: </p><input type="password" value=" required <?php echo $password; ?>">
<p>Confirm Password: </p><input type="password" value=" required <?php echo $confirmpassword>">
<div class="btn">
<button type="submit" class="btn" name="reg_user"> Register </button>
</div>
<p>
already a member? <a href="index.php">Sign In </a>
</p>
</form>
</div>
Asked
Active
Viewed 16 times
-2
-
Which line is line 14? – Barmar May 16 '22 at 17:39
-
Typo: `` should be `` – Barmar May 16 '22 at 17:43
-
Why do you have `required` inside the `value=` string? Shouldn't that be before or after `valiue`? – Barmar May 16 '22 at 17:44