MinsoftK

add required CSS property

...@@ -24,22 +24,22 @@ ...@@ -24,22 +24,22 @@
24 <div id="article"> 24 <div id="article">
25 <h2>회원가입</h2> 25 <h2>회원가입</h2>
26 <div id="inputset"> 26 <div id="inputset">
27 - <form class="signinform" action="loginmain.html" onsubmit="return checkValidation(this)"> 27 + <form class="signinform" action="loginmain.html" onsubmit="return checkValidation()" method="post">
28 <label for="email">이메일:</label><br> 28 <label for="email">이메일:</label><br>
29 - <input id="eValidation"type="text" name="email" placeholder="이메일을 입력하세요."><br> 29 + <input id="eValidation"type="text" name="email" placeholder="이메일을 입력하세요." required><br>
30 30
31 <label for="password">비밀번호:</label><br> 31 <label for="password">비밀번호:</label><br>
32 - <input id="fValidation" type="password" name="password" placeholder="비밀번호를 입력하세요."><br> 32 + <input id="fValidation" type="password" name="password" placeholder="비밀번호를 입력하세요." required><br>
33 33
34 <label for="password">비밀번호 확인:</label><br> 34 <label for="password">비밀번호 확인:</label><br>
35 - <input id="sValidation" type="password" name="checkpassword" placeholder="비밀번호를 입력하세요."><br> 35 + <input id="sValidation" type="password" name="checkpassword" placeholder="비밀번호를 입력하세요." required><br>
36 36
37 37
38 <label for="name">이름:</label><br> 38 <label for="name">이름:</label><br>
39 - <input type="text" name="name"placeholder="이름을 입력하세요."><br> 39 + <input type="text" name="name"placeholder="이름을 입력하세요." required><br>
40 40
41 <label for="age">나이:</label><br> 41 <label for="age">나이:</label><br>
42 - <input type="text" name="age" placeholder="나이를 입력하세요."><br><br> 42 + <input type="text" name="age" placeholder="나이를 입력하세요." required><br><br>
43 43
44 <label for="sex">성별:</label><br> 44 <label for="sex">성별:</label><br>
45 <input type="radio" value="man" name="sex">남자<br> 45 <input type="radio" value="man" name="sex">남자<br>
......