본문 바로가기

front-end/html

form 과 href 의 차이점

반응형

 

form 은 controller 로 연결

 

<form action="/join" method="POST">
<input type="text" name="username" placeholder="Username"/> <br/>
<input type="password" name="password" placeholder="Password"/> <br/>
<input type="email" name="email" placeholder="Email"/> <br/>
<button>회원가입</button>
</form>

 

href 는 html 로 연결

<a href="/joinForm"> 회원가입을 아직 하지 않으셨나요? </a>