1:会员登录页面
<!DOCTYPE html>
<html>
<head>
<title>会员管理系统</title>
<meta name="keywords" content="keyword1,keyword2,keyword3">
<meta name="description" content="this is my page">
<meta name="content-type" content="text/html; charset=UTF-8">
</head>
<body bgcolor="CCCFFF">
<div align="center">
<h2>会员管理系统</h2>
<form action="main.html" method="post">
<table border="2" bgcolor="#95BDEF">
<tr>
<td>会员名称:</td>
<td><input type="text" name="username" size="16"/></td>
</tr>
<tr>
<td>会员密码:</td>
<td><input type="password" name="password" size="18"/></td>
</tr>
<tr>
<td align="center">
<input type="submit" value="登录"/>
</td>
<td align="center">
<input type="reset" value="清除"/>
</td>
</tr>
<tr>
<td colspan="2" align="center">
<a href="../memberManage/register.html">注册</a>
</tr>
</table>
</form>
</div>
</body>
</html>
2:会员注册页面
<!DOCTYPE html>
<html>
<head>
<title>会员注册</title>
<meta name="keywords" content="keyword1,keyword2,keyword3">
<meta name="description" content="this is my page">
<meta name="content-type" content="text/html; charset=UTF-8">
</head>
<body bgcolor="CCCFFF">
<form action="login.html" method="post">
<table border="1" align="center">
<tr>
<td colspan="2" align="center">会员注册页面</td>
</tr>
<tr>
<td>会员名称:</td>
<td><input type="text" name="username"/></td>
</tr>
<tr>
<td>会员密码:</td>
<td><input type="password" name="password1"/></td>
</tr>
<tr>
<td>确认密码:</td>
<td><input type="password" name="password2"></td>
</tr>
<tr>
<td>会员性别:</td>
<td>
<input type="radio" name="radiobutton"/>男
<input type="radio" name="radiobutton"/>女
</td>
</tr>
<tr>
<td>会员邮箱:</td>
<td><input type="email" name="email"/></td>
</tr>
<tr>
<td>会员电话:</td>
<td><input type="number" name="number"/></td>
</tr>
<tr>
<td>会员简历:</td>
<td><textarea rows="10" cols="16"></textarea></td>
</tr>
<tr>
<td><input type="submit" name="submit" value="提交"></td>
<td><input type="reset" name="reset" value="重置"></td>
</tr>
</table>
</form>
</body>
</html>
3:系统主页面
<!DOCTYPE html>
<html>
<head>
<title>会员管理系统</title>
<meta name="keywords" content="keyword1,keyword2,keyword3">
<meta name="description" content="this is my page">
<meta name="content-type" content="text/html; charset=UTF-8">
</head>
<frameset rows="60,*">
<frame src="../memberManage/top.html" scrolling="no">
<frameset cols="120,*">
<frame src="../memberManage/left.html" scrolling="no">
<frame src="../memberManage/bottom.html" name="main" scrolling="no">
</frameset>
</frameset>
</html>
4:top.html
<!DOCTYPE html>
<html>
<head>
<title>会员管理系统</title>
<meta name="keywords" content="keyword1,keyword2,keyword3">
<meta name="description" content="this is my page">
<meta name="content-type" content="text/html; charset=UTF-8">
</head>
<body bgcolor="CCCFFF">
<center>
<h1>会员管理系统</h1>
</center>
</body>
</html>
5:left.html
<!DOCTYPE html>
<html>
<head>
<title></title>
<meta name="keywords" content="keyword1,keyword2,keyword3">
<meta name="description" content="this is my page">
<meta name="content-type" content="text/html; charset=UTF-8">
</head>
<body bgcolor="CCCFFF">
<br/>
<p>
<a href="../memberManage/lookMember.html" target="main">查询会员信息</a>
</p>
<br/>
<p>
<a href="../memberManage/updateMember.html" target="main">修改会员信息</a>
</p>
<br/>
<p>
<a href="../memberManage/deleteMember.html" target="main">删除会员信息</a>
</p>
</body>
</html>
6:bottom.html
<!DOCTYPE html>
<html>
<head>
<title></title>
<meta name="keywords" content="keyword1,keyword2,keyword3">
<meta name="description" content="this is my page">
<meta name="content-type" content="text/html; charset=UTF-8">
</head>
<body bgcolor="CCCFFF">
</body>
</html>
7:lookMember.html
<!DOCTYPE html>
<html>
<head>
<title>查询会员信息</title>
<meta name="keywords" content="keyword1,keyword2,keyword3">
<meta name="description" content="this is my page">
<meta name="content-type" content="text/html; charset=UTF-8">
</head>
<body bgcolor="CCCFFF">
<div align="center">
<table border="2">
<tr align="center">
<th colspan="5">会员信息</th>
</tr>
<tr align="center">
<th>会员名称</th>
<th>会员性别</th>
<th>会员邮箱</th>
<th>会员电话</th>
<th>会员简历</th>
</tr>
<tr align="center">
<th>奋斗</th>
<th>男</th>
<th>10066@qq.com</th>
<th>13652901372</th>
<th>本科学历</th>
</tr>
<tr align="center">
<th>小鸟</th>
<th>女</th>
<th>66311@qq.com</th>
<th>15917282456</th>
<th>硕士学历</th>
</tr>
</table>
</div>
</body>
</html>
8:updateMember.html
<!DOCTYPE html>
<html>
<head>
<title>修改会员信息</title>
<meta name="keywords" content="keyword1,keyword2,keyword3">
<meta name="description" content="this is my page">
<meta name="content-type" content="text/html; charset=UTF-8">
</head>
<body bgcolor="CCCFFF">
<div align="center">
<form action="lookMember.html" method="post">
<table border="2" align="center">
<tr>
<td colspan="2" align="center">请输入要修改的会员信息</td>
</tr>
<tr>
<td>会员名称:</td>
<td><input type="text" name="username"/></td>
</tr>
<tr>
<td>会员密码:</td>
<td><input type="password" name="password1"/></td>
</tr>
<tr>
<td>确认密码:</td>
<td><input type="password" name="password2"></td>
</tr>
<tr>
<td>会员性别:</td>
<td>
<input type="radio" name="radiobutton"/>男
<input type="radio" name="radiobutton"/>女
</td>
</tr>
<tr>
<td>会员邮箱:</td>
<td><input type="email" name="email"/></td>
</tr>
<tr>
<td>会员电话:</td>
<td><input type="number" name="number"/></td>
</tr>
<tr>
<td>会员简历:</td>
<td><textarea rows="10" cols="16"></textarea></td>
</tr>
<tr>
<td><input type="submit" name="submit" value="提交"></td>
<td><input type="reset" name="reset" value="重置"></td>
</tr>
</table>
</form>
</div>
</body>
</html>
9:deleteMember.html
<!DOCTYPE html>
<html>
<head>
<title>删除会员信息</title>
<meta name="keywords" content="keyword1,keyword2,keyword3">
<meta name="description" content="this is my page">
<meta name="content-type" content="text/html; charset=UTF-8">
</head>
<body bgcolor="CCCFFF">
<div align="center">
<h2>会员管理系统</h2>
<form action="../memberManage/lookMember.html" method="post">
<table border="2" align="center">
<tr>
<th colspan="2" align="center">请输入你要删除的会员</th>
</tr>
<tr>
<td>会员名称:</td>
<td><input type="text" name="memberName"></td>
</tr>
<tr>
<td>
<input type="submit" value="登录"/>
</td>
<td>
<input type="reset" value="清除"/>
</td>
</tr>
<tr>
<td colspan="2" align="center">
<a href="../memberManage/register.html">注册</a>
</tr>
</table>
</form>
</div>
</body>
</html>