Toggle navigation
Toggle navigation
This project
Loading...
Sign in
성준영
/
webservice-practices
Go to a project
Toggle navigation
Toggle navigation pinning
Projects
Groups
Snippets
Help
Project
Activity
Repository
Pipelines
Graphs
Issues
0
Merge Requests
0
Wiki
Snippets
Network
Create a new issue
Builds
Commits
Issue Boards
Authored by
성준영
2017-03-16 11:40:01 +0900
Browse Files
Options
Browse Files
Download
Email Patches
Plain Diff
Commit
cefa81f23521ced396ce9779cfe42c2bc615b6ac
cefa81f2
1 parent
17102b67
practice_4 회원가입
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
60 additions
and
0 deletions
practice_4/index.html
practice_4/index.html
0 → 100644
View file @
cefa81f
<!DOCTYPE html>
<html
lang=
"en"
>
<head>
<meta
charset=
"UTF-8"
>
<title>
회원가입
</title>
</head>
<body>
<form
action=
""
method=
"post"
>
<table
border=
"1"
>
<tr>
<td><b>
아이디
</b></td>
<td
colspan=
"3"
>
<input
type=
"text"
>
<button>
중복조회
</button>
</td>
</tr>
<tr>
<td><b>
비밀번호
</b></td>
<td>
<input
type=
"password"
>
</td>
<td><b>
확인
</b></td>
<td>
<input
type=
"password"
>
</td>
</tr>
<tr>
<td><b>
이름
</b></td>
<td
colspan=
"3"
>
<input
type=
"text"
>
</td>
</tr>
<tr>
<td><b>
성별
</b></td>
<td
colspan=
"3"
>
<input
name=
"sex"
value=
"male"
type=
"radio"
/>
남
<input
name=
"sex"
value=
"female"
type=
"radio"
/>
여
</td>
</tr>
<tr>
<td><b>
지역
</b></td>
<td
colspan=
"3"
>
<select>
<option>
서울
</option>
<option>
수원
</option>
<option>
창원
</option>
<option>
부산
</option>
</select>
</td>
</tr>
<tr>
<td
colspan=
"4"
>
<input
type=
"checkbox"
/>
약관에 동의합니다
</td>
</tr>
</table>
<input
type=
"submit"
value=
"회원가입"
/>
</form>
</body>
</html>
\ No newline at end of file
Please
register
or
login
to post a comment