Почему в тесте 38 теги input для правильного ответа не закрыты?
0
<!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>