Skip to content

Commit

Permalink
fix: Fix email input value in forgot password form
Browse files Browse the repository at this point in the history
  • Loading branch information
kenny2125 committed Nov 8, 2024
1 parent b6e648d commit bee2aec
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion index.html
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
<body>
<!-- forgot password input form -->
<form action="pages/mail.php" method="post">
<input type="email" name="email" id="email" placeholder="Enter your email" value="<?php echo isset($email) ? $email : ''; ?>">
<input type="email" name="email" id="email" placeholder="Enter your email" value=>
<button type="submit">Submit</button>
</form>

Expand Down

0 comments on commit bee2aec

Please sign in to comment.