我有一个 HTML 表单,可以发布到一个单独的 PHP 文件。我的问题是每当我将表单标签包裹在我的文本输入周围并重新加载页面时,我的用户名文本框的文本为“localhost”,密码字段的文本为我的数据库密码。老实说,我不知道为什么会这样。这是我的 login-ui.html 文件的代码:
<form action="login.php" method="post" enctype="multipart/form-data">
<div class="login-field">
<input type="text" name="Username" id="txtUsername" placeholder="Username" />
<input type="password" name="Password" id="txtPassword" placeholder="Password" />
<br />
<a href="">
<img src="pics/gears-small-white.png" style="width: 10px; height: auto;" /> Login</a>
<a href="#">
<img src="pics/gears-small-white.png" style="width: 10px; height: auto;" /> Reset Password</a>
</div>
</form>
login.php 文件中目前没有代码。