-
Notifications
You must be signed in to change notification settings - Fork 13
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
ghostwolfs
wants to merge
4
commits into
Sys-Lab:master
Choose a base branch
from
ghostwolfs:master
base: master
Could not load branches
Branch not found: {{ refName }}
Loading
Could not load tags
Nothing to show
Loading
Are you sure you want to change the base?
Some commits from the old base branch may be removed from the timeline,
and old review comments may become outdated.
Open
Changes from all commits
Commits
File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -7,3 +7,7 @@ | |
- 性别:男 | ||
- 手机号:13402821808 | ||
- 邮箱:[email protected] | ||
- ghostwolfs | ||
- 性别:男 | ||
- 手机号:18011408023 | ||
- 邮箱:[email protected] |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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> | ||
|
||
|
||
|
||
|
||
</html> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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> |
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
文件名不要有空格。。。会GG的
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
难道不是没加嘛
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
文件名中间的分隔用-或者_吧。。。