0

On my website I have a google reCaptcha and well it just makes my login form look really ugly.

Here's a screenshot

enter image description here

So I was looking around and found a website with a login form like this

enter image description here

Which looks really good, it's fully responsive and all. I was curious on a way to do this? Haven't really been able to find any examples of how to do this with a google reCaptcha.

Daniel A. White
  • 187,200
  • 47
  • 362
  • 445
coddding
  • 333
  • 1
  • 6
  • 15

1 Answers1

1

You can do this by using table and setting text-box width to 100%

Example Code :

<table>
            <tr><td>
                <input type="text" style="width:100%;"><br>
            </tr></td>
            <tr><td>
                <input  class="scaleR" type="text" style="width:100%;"><br></tr></td>
            <tr><td>
                <div class="g-recaptcha" data-sitekey="SITE_KEY" data-callback="checked"></div>
            </tr></td>
        </table>

Result :

enter image description here

Zeus
  • 1,235
  • 12
  • 20