xiuos/APP_Framework/Applications/app_test/test_webserver/index.html

34 lines
828 B
HTML
Raw Permalink Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>表单</title>
</head>
<body>
<!--
表单form
action表单提交的位置可以是网站也可以是一个请求处理地址
method有postget提交方式
-->
<form action="http://192.168.1.5/" method="post">
<h2>设置路由信息</h2>
<!--
<input type="text">是文本输入框
<input type="password">是密码输入框,默认是用小黑点表示密码的
-->
<p>IP地址<input type="text" name="ip"></p>
<p>子网掩码:<input type="text" name="netmask"></p>
<p>默认网关:<input type="text" name="iproute"></p>
<p>DNS服务器<input type="text" name="dns"></p>
<p>
<input type="submit">
<input type="reset">
</p>
</form>
</body>
</html>