forked from maxliaops/Java_Web_Examples
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.htm
More file actions
81 lines (81 loc) · 2.5 KB
/
index.htm
File metadata and controls
81 lines (81 loc) · 2.5 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"
"http://www.w3.org/TR/html4/loose.dtd">
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=gb2312">
<title>注册</title>
<link href="../css/default.css" rel="stylesheet" type="text/css"/>
<script src="../js/default.js"></script>
</head>
<body>
<p align="center" style=" margin-top:80"> </p>
<table width="500" border="0" align="center" cellpadding="0" cellspacing="0" bgcolor="#F5f7f7">
<form name="form" method="post" action="reg.jsp">
<tr align="center">
<td height="27" colspan="2" bgcolor="#21536A"><div id="reg">企业注册</div></td>
</tr>
<tr>
<td width="200" height="22" align="center">用 户 名:</td>
<td width="300">
<input name="cname" type="text" id="cname"></td>
</tr>
<tr>
<td height="22" align="center">密 码:</td>
<td><input type="password" name="password"></td>
</tr>
<tr>
<td height="22" align="center">密码确认:</td>
<td><input type="password" name="rpassword"></td>
</tr>
<tr>
<td width="200" height="22" align="center">企业名称:</td>
<td width="300">
<input type="text" name="name">
</td>
</tr>
<tr>
<td width="200" height="22" align="center">电子邮件:</td>
<td width="300">
<input type="text" name="email">
</td>
</tr>
<tr>
<td width="200" height="22" align="center">联系电话:</td>
<td width="300">
<input name="tel" type="text" id="tel" value="不详">
</td>
</tr>
<tr>
<td width="200" height="22" align="center">从事行业:</td>
<td width="300">
<input name="manage" type="text" id="manage" value="不详">
</td>
</tr>
<tr>
<td width="200" height="22" align="center">企业地址:</td>
<td width="300">
<input name="address" type="text" id="address" value="不详">
</td>
</tr>
<tr>
<td width="200" height="22" align="center">企业简历:</td>
<td width="300">
<textarea name="resume" cols="35" rows="5">无</textarea>
</td>
</tr>
<tr align="center">
<td height="35" colspan="2"><input type="submit" name="Submit" value="注册" onClick="return reg()">
<input type="reset" name="Reset" value="重置"></td>
</tr>
</form>
<tr>
<td height="22" colspan="2">说明:
<ul>
<p>1.注册用户名不允许为特殊字符和汉字.</p>
<p>2.用户名、密码、企业名称和电子邮件是必填项.</p>
</ul></td>
</tr>
</table>
</body>
</html>