Created
October 19, 2019 18:18
-
-
Save shershen08/8d1c4cf39e63f217a22c35bd3b077efb to your computer and use it in GitHub Desktop.
Svelte basic form app
This file contains hidden or 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="col-md-4 col-sm-6" style="padding-left:0px;"> | |
| <h3 class="cont-title">Email Us</h3> | |
| <div class="contact-info"> | |
| <form action="" method="post" role="form" class="contactForm"> | |
| <div class="form-group"> | |
| <input type="text" name="name" class="form-control" id="name" placeholder="Your Name"> | |
| </div> | |
| <div class="form-group"> | |
| <input type="email" class="form-control" name="email" id="email" placeholder="Your Email"> | |
| </div> | |
| <div class="form-group"> | |
| <textarea class="form-control" name="message" rows="5" placeholder="Message"></textarea> | |
| </div> | |
| <button type="submit" class="btn btn-send">Send</button> | |
| </form> | |
| </div> | |
| </div> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment