简单的登录模板

来源:互联网 发布:java实训内容怎么写 编辑:程序博客网 时间:2024/05/17 02:22
 

<html>
<head>
   <meta http-equiv="Content-Type" conten="text/html; charset=utf-8">
   <title>这是模板文件</title>
   <style type="text/css">

        .style{

          font-size:30px;
    font-weight:blod;
 
  }
  </style>
</head>
<body>
       <p class="style">这是模板文件</p>
    <form action="../login.php" method="post">
       <table width=290  border=2>
             <tr>
            <td>用户名:</td>
                        <td><input type="text" name="username"></td>
       </tr>
       <tr>
            <td>密码:</td>
                        <td><input type="password" name="password"></td>
       </tr>
         </table>
    <input type="submit" name="submit" value="提交">
    </form>

</body>
</html>

原创粉丝点击