xxxxxxxxxx
<html>
<body>
<h1>Sample Form</h1>
<form action="./submit-account.php" method="post">
<!-- Burada bir e-posta girmek için bir alan ekledim -->
<label for="email">Email</label><br>
<input type="email" id="email" name="email"><br><br>
<!-- Burada bir şifre girmek için alan ekledim. -->
<label for="password">Password</label><br>
<input type="password" id="password" name="password"><br><br>
<input type="submit">
</form>
</body>
</html>