html怎么写登录框

html怎么写登录框,第1张

html写登录框的方法:使用input标签、from表单标签以及table标签即可。html称为超文本标记语言,是一种标识性的语言。它包括一系列标签.通过这些标签可以将网络上的文档格式统一,使分散的Internet资源连接为一个逻辑整体。

<html>

<head>

<title>登陆页面</title>

</head>

<form action="login_conf.jsp" method="post">

用户登陆

用户名:<input type="text" name="uname">

密码: <input type="password" name="upassword">

<input type="submit" value="提交">

<input type="reset" value="重置">

</form>

</body>

</html>

****************************************************

验证页面jsp代码如下:

<html>

<head>

<title>用户验证页面</title>

</head>

<h1>登陆范例-登陆成功</h1>

</html>

不知道你用啥样的前台 是jsp还是asp.net或者是php


欢迎分享,转载请注明来源:内存溢出

原文地址: http://outofmemory.cn/zaji/6278313.html

(0)
打赏 微信扫一扫 微信扫一扫 支付宝扫一扫 支付宝扫一扫
上一篇 2023-03-19
下一篇 2023-03-19

发表评论

登录后才能评论

评论列表(0条)

保存