Forked from teethnclaws/custom-google-form-using-bootstrap.markdown
Created
August 2, 2022 03:57
-
-
Save zkenstein/8bc14950ff49e115ad59b4499dc029a4 to your computer and use it in GitHub Desktop.
Custom Google Form using Bootstrap
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<div class="row" style="padding:40px;"> | |
<p>Just paste your google form URL into the action attribute and you will have a working custom form that you can style as you'd like!</p> | |
<br/> | |
<form action="https://docs.google.com/forms/d/e/1FAIpQLSfYzqGriJLvrcGl1fsyNiijTRZZsPOuFfR3miNNh_XYefuGeA/formResponse" method="post" id="application-form" target="_blank"> | |
<div class="row"> | |
<div class="col-md-5"> | |
<div class="form-group"> | |
<input type="text" name="entry.2005620554" value="" class="form-control name" id="entry_2005620554" dir="auto" aria-label="Name " aria-required="true" placeholder="Name"> | |
</div> | |
</div> | |
</div> | |
<div class="row"> | |
<div class="col-md-5"> | |
<div class="form-group"> | |
<input type="text" name="entry.1045781291" value="" class="form-control email" id="entry_1045781291" dir="auto" aria-label="Email " aria-required="true" placeholder="Email"> | |
</div> | |
</div> | |
</div> | |
<div class="row"> | |
<div class="col-md-5"> | |
<div class="form-group"> | |
<input type="text" name="entry.1166974658" value="" class="form-control phone" id="entry_1166974658" dir="auto" aria-label="Phone Number " aria-required="true" placeholder="Phone"> | |
</div> | |
</div> | |
</div> | |
<div class="col-md-5"> | |
<div class="form-group"> | |
<input type="submit" id="submit" class="btn btn-custom" name="submit" value="Submit Test Form"> | |
</div> | |
</div> | |
</form> | |
</div> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<link href="https://cdnjs.cloudflare.com/ajax/libs/twitter-bootstrap/3.3.7/css/bootstrap.min.css" rel="stylesheet" /> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment