html简单的登陆注册代码的实现

<html>
<head>
<title>登陆页面</title>
</head>
<form action="login_conf.jsp" method="post">
<br>用户登陆<br>
用户名:<input type="text" name="uname" >
<br>密码: <input type="password" name="upassword" ><br>
<input type="submit" value="提交">
<input type="reset" value="重置">
</form>
</body>
</html>
<form action="" method="get" class="form-example">
<div class="form-example">
<label for="name">Enter your name: </label>
<input type="text" name="name" id="name" required>
</div>
<div class="form-example">
<label for="email">Enter your email: </label>
<input type="email" name="email" id="email" required>
</div>
<div class="form-example">
<input type="submit" value="Subscribe!">
</div>
</form>

猜你喜欢

转载自www.cnblogs.com/zj1997/p/9655269.html