<!DOCTYPE html>
Испытание: форма регистрации
Регистрация
<form action="https://echo.htmlacademy.ru" method="post">
<label for="login-field">Ваш логин (email):</label><br>
<input type="text" name="login" id="login-field"></input><br>
<label for="password-field">Пароль:</label><br>
<input type="password" name="password" id="password-field"></input><br>
<label for="info">Информация о себе:</label><br>
<textarea name="info" id="info" rows="3"></textarea><br>
<input type="checkbox" checked name="checkbox" id="checkbox"></input>
<label for="checkbox">Подписаться на рассылку</label><br>
<input type="submit" name="submit" id="submit-button" value="Зарегистрироваться"></input>
</form>
В чем ошибка, почему не 99%?