1. 程式人生 > >網頁註冊登入資料庫(一)

網頁註冊登入資料庫(一)

登入頁面


<%@ page language="java" import="java.util.*" contentType="text/html;charset=utf-8"%>
<html>
<head>
<title>使用者登入</title>
</head>
<body>
<br>
 <center>
 <div style="font-size:20">
     <font face="楷體" size="7" color="#000" >登入介面</font><br><br>
     <form action = "check.jsp" method="post">

 
  賬號:<input type="text" name="username"  value = "請輸入使用者名稱" maxlength = "16" onfocus = "if(this.value == '請輸入使用者名稱') this.value =''"><br>
  密碼:<input type="password" name="pwd" maxlength = "20"><br>
      <input type="submit" name="submit" value="登入  ";>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;
 
    <input type="reset" value="重新輸入" name="reset" /><br>
                                  還沒有賬號?請<a href="register.jsp">點選這裡註冊!</a>
</body>
</center>
</html>