Toggle navigation
Toggle navigation
This project
Loading...
Sign in
2020-1-capstone-design1
/
Triz_Project1
Go to a project
Toggle navigation
Toggle navigation pinning
Projects
Groups
Snippets
Help
Project
Activity
Repository
Pipelines
Graphs
Issues
1
Merge Requests
0
Wiki
Snippets
Network
Create a new issue
Builds
Commits
Issue Boards
Authored by
MinsoftK
2020-04-23 21:02:52 +0900
Browse Files
Options
Browse Files
Download
Email Patches
Plain Diff
Commit
c6877c0abc089e6db310ddd425d509ca1e81f653
c6877c0a
1 parent
44c8e6d9
add required CSS property
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
6 additions
and
6 deletions
front/web/signinmain.html
front/web/signinmain.html
View file @
c6877c0
...
...
@@ -24,22 +24,22 @@
<div
id=
"article"
>
<h2>
회원가입
</h2>
<div
id=
"inputset"
>
<form
class=
"signinform"
action=
"loginmain.html"
onsubmit=
"return checkValidation(
this)
"
>
<form
class=
"signinform"
action=
"loginmain.html"
onsubmit=
"return checkValidation(
)"
method=
"post
"
>
<label
for=
"email"
>
이메일:
</label><br>
<input
id=
"eValidation"
type=
"text"
name=
"email"
placeholder=
"이메일을 입력하세요."
><br>
<input
id=
"eValidation"
type=
"text"
name=
"email"
placeholder=
"이메일을 입력하세요."
required
><br>
<label
for=
"password"
>
비밀번호:
</label><br>
<input
id=
"fValidation"
type=
"password"
name=
"password"
placeholder=
"비밀번호를 입력하세요."
><br>
<input
id=
"fValidation"
type=
"password"
name=
"password"
placeholder=
"비밀번호를 입력하세요."
required
><br>
<label
for=
"password"
>
비밀번호 확인:
</label><br>
<input
id=
"sValidation"
type=
"password"
name=
"checkpassword"
placeholder=
"비밀번호를 입력하세요."
><br>
<input
id=
"sValidation"
type=
"password"
name=
"checkpassword"
placeholder=
"비밀번호를 입력하세요."
required
><br>
<label
for=
"name"
>
이름:
</label><br>
<input
type=
"text"
name=
"name"
placeholder=
"이름을 입력하세요."
><br>
<input
type=
"text"
name=
"name"
placeholder=
"이름을 입력하세요."
required
><br>
<label
for=
"age"
>
나이:
</label><br>
<input
type=
"text"
name=
"age"
placeholder=
"나이를 입력하세요."
><br><br>
<input
type=
"text"
name=
"age"
placeholder=
"나이를 입력하세요."
required
><br><br>
<label
for=
"sex"
>
성별:
</label><br>
<input
type=
"radio"
value=
"man"
name=
"sex"
>
남자
<br>
...
...
Please
register
or
login
to post a comment