Skip to content

register framework #4

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Open
wants to merge 4 commits into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 4 additions & 0 deletions Contributors.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,3 +7,7 @@
- 性别:男
- 手机号:13402821808
- 邮箱:[email protected]
- ghostwolfs
- 性别:男
- 手机号:18011408023
- 邮箱:[email protected]
48 changes: 48 additions & 0 deletions Login framework.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,48 @@
<html>
<head>
<title>登陆</title>
<meta charset="utf-8">
<style>
#main {
position:absolute;
width:500px;
height:250px;
top:50%;
left:50%;
margin-left:-250px;
margin-top:-125px;
}
</style>
</head>

<body>
<div id="main">
<table align="center" width="300" border="0" cellpadding="2" cellspaceing="0">
<caption align="center"><h2>登陆</h2></caption>
<form action="#" method="post">
<tr>
<th>账号:</th>
<td><input type="text" name="usrname" size="20"</td>
</tr>

<tr>
<th>密码:</th>
<td><input type="password" name="password" size="20"</td>
</tr>
<tr>
<td></td>
<td>
<input type="submit" name="登陆" value="登陆">
<input type="submit" name="注册" value="注册">
</td>
</tr>
</form>
</table>
</div>

</body>




Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

文件名不要有空格。。。会GG的

Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

难道不是没加嘛

Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

文件名中间的分隔用-或者_吧。。。

</html>
86 changes: 86 additions & 0 deletions register framework.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,86 @@
<html>
<head>
<title>register framework</title>
<meta charset="utf-8">
<style>
#main {
position: absolute;
width:500px;
height:500px;
background-color:white;
top:50%;
left:50%;
margin-top:-250px;
margin-left:-250px;
}
</style>
</head>
<body>
<div id="main">
<table align="center" width="500" border="0" cellpadding="2" cellspaceing="0">
<caption align="center"><h2>用户注册</h2></caption>
<form action="#" method="post">
<tr>
<th>账号名:</th>
<td><input type="text" name="usrname" size="20"></td>
</tr>
<tr>
<th>性别:</th>
<td>
<input type="radio" name="sex" value="1">男
<input type="radio" name="sex" value="2">女
<input type="radio" name="sex" value="0">保密
</td>
</tr>
<tr>
<th>学历:</th>
<td>
<select name="edu">
<option>--请选择--</option>
<option value="1">高中</option>
<option value="2">专科</option>
<option value="3">本科</option>
<option value="4">研究生</option>
<option value="5">其他</option>
</select>
<td>
</tr>
<tr>
<th>密码:</th>
<td><input type="password" name="password" size="20"></td>
</tr>
<tr>
<th>重复密码:</th>
<td><input type="password" name="repassword" size="20"></td>
</tr>
<tr>
<th>真实姓名:</th>
<td><input type="text" name="realname" size="20"></td>
</tr>
<tr>
<th>身份证号:</th>
<td><input type="text" name="id" size="20"></td>
</tr>
<tr>
<th>邮箱:</th>
<td><input type="text" name="e-mail" size="20"></td>
</tr>
<tr>
<th>手机号:</th>
<td><input type="text" name="tellphone" size="20"></td>
</tr>
<tr>
<th>自我介绍:</th>
<td><textarea name="eval" rows="4" cols="50"></textarea></td>
</tr>
<tr>
<td></td>
<td>
<input type="submit" name="提交" value="提交">
<input type="reset" name="重置" value="重置">
</td>
</form>
</table>
</div>
</body>
</html>