0
Web development
How do i connect login page and sign up page. Click button sign up. Style the button so that it goes to sign up form? How can i do that?
2 odpowiedzi
+ 2
HTML:
<div class="classname"><a href="#">Sign up here!</a></div>
To style the button with CSS:
.classname {
border: 1px solid #000000
padding: 10px
margin: 3px
background- color: #AAAAAA
}
+ 1
Using anchor tag:
<a href="/signup" > Don't have an account? Click here to Signup </a>