Skip to content

Instantly share code, notes, and snippets.

@riix
Last active December 10, 2015 02:19
Show Gist options
  • Select an option

  • Save riix/4367135 to your computer and use it in GitHub Desktop.

Select an option

Save riix/4367135 to your computer and use it in GitHub Desktop.
form
<form action="#" method="post" class="form">
<fieldset>
<legend class="semantic">회원 가입 폼</legend>
<ul>
<li>
<p class="q"><label for="userId">ID <em>*</em></label></p>
<p class="a">
<span class="desc">ID must have to <em>3-20</em> alphabetic or numeric characters and the first letter should be alphabetic character.</span>
<input name="" type="text" id="userId" />
<button type="button">중복확인</button>
</p>
</li>
<li>
<p class="q"><label for="userPw">비밀번호 <em>*</em></label></p>
<p class="a">
<span class="desc">Requires <em>6-20</em> characters.</span>
<input name="" type="password" id="userPw" style="width: 200px" />
</p>
</li>
<li>
<p class="q"><label for="userPw2">비밀번호 확인 <em>*</em></label></p>
<p class="a">
<span class="desc">Please enter your password once more.</span>
<input name="" type="password" id="userPw2" style="width: 200px" />
</p>
</li>
</ul>
</fieldset>
</form>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment