1. 程式人生 > >html簡單的登陸註冊代碼的實現

html簡單的登陸註冊代碼的實現

req 簡單的 text eth res class submit itl 用戶

<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>

html簡單的登陸註冊代碼的實現