Что в коде не верно?
<!doctype html>
<html lang="ru">
<head>
<meta charset="UTF-8">
<title>HTML формы</title>
</head>
<body>
<h1>HTML формы</h1>
<form method="post" action="#" id="first_form">
<input type="text" name="login_field" placeholder="Логин">
<input type="password" name="password_field" placeholder="Пароль">
<input type='submit' class='btn' value='Войти'>
</form>
</body>
</html>