+ 1
Creating a log-in page (need help)
Hello,I have been trying to create a log in page but I have been having difficulty putting the form inside the block element how do I do this? Do I put it in <div> or is there another way because when I tried that it didn’t work.
5 odpowiedzi
+ 2
Honest Thomas hi,
When you say it didn't work, what were you expecting and what did you get ? If your code is on sololearn, it would be useful you post a link to it here,for debugging.
+ 2
Kindly share your code.
+ 1
It’s embarrasingly bad
+ 1
Honest Thomas ,no reasons for embarrassment 🙂.
About your code , your <form> should be nested in your <div> but you closed your </div> before.
Try:
<div>
<form>
<label></label>
<input>
</form>
</div>