/
githubmirror
/
servo
Обзор
Документация
Войти
/
githubmirror
/
servo
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
main
tests/html/html_validation_test.html
18 строк
387 B
Bhavya Bansal
html form validation initial steps with test html file, added stub methods, added code to handle validations
24 ноя 2016, 09:46
24 ноя 2016, 09:46
2a40877
Код
Авторство
О чём код?
<!DOCTYPE html> <html> <body> <form> First name:<br> <input type="text" name="firstname" value="Mickey" required> <br> Last name:<br> <input type="text" name="lastname" value="Mouse" required> <br><br> <input type="submit" value="Submit"> </form> <p>If you click the "Submit" button, the form-data will be sent to a page called "action_page.php".</p> </body> </html>