谁能编写一个html代码?

来源:百度知道 编辑:UC知道 时间:2024/05/27 05:05:06
在文本框里填写的信息提交到一个博客.
那用户名和密码呢
大家都说一个例子比如用户名等于123
密码等于451566
再编html

<form action="目标博客处理提交数据的页面地址" method="post">
用户名:<input type=text name="目标博客提交时的表单用户名(须查看博客登陆界面源代码)">
密码:<input type=password name="目标博客处理提交时表单的密码名(须查看博客登陆界面源代码)" >
<input type="submit" name="submit" value="登陆" >
</form>

完整代码
<html>
<head>
<title>
博客系统登陆
</title>

<body>
<form action="你的博客处理提交数据的页面地址" method="post">
用户名:<input type=text name="目标博客提交时的表单用户名(须查看博客登陆界面源代码)" value="123"
>
密码:<input type=password name="目标博客处理提交时表单的密码名(须查看博客登陆界面源代码)" value="451566">
<input type="submit" name="submit" value="登陆" >

</form>

</body>
</html>

<html>
<head>
&l