xxxxxxxxxx
<html>
<body>
<h1>Örnek Form</h1>
<form action="./submit-account.php" method="post" target="preview">
<label for="username">Username</label><br>
<input type="username" id="username" name="username"><br><br>
<label for="password">Password</label><br>
<input type="password" id="password" name="password"><br><br>
<!-- Burada buton tipini, tıklandığında veri göndermesi için tanımladım .Ayrıca buton üzerinde görünen default word'ün metnini "Login" olarak değiştirdim. -->
<input type="submit" value="Login">
</form>
</body>
</html>