Web development | Sololearn: Learn to code for FREE!
New course! Every coder should learn Generative AI!
Try a free lesson
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?

29th Oct 2020, 10:32 PM
SilverBack Generation
SilverBack Generation - avatar
2 Answers
+ 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 }
1st Nov 2020, 8:53 PM
BrokenStar [INACTIVE]
BrokenStar [INACTIVE] - avatar
+ 1
Using anchor tag: <a href="/signup" > Don't have an account? Click here to Signup </a>
29th Oct 2020, 11:53 PM
maf
maf - avatar