Created
April 9, 2022 21:56
-
-
Save TheGarkine/e5ff1f0592d981476227103c9f14af23 to your computer and use it in GitHub Desktop.
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
| <form id="contactForm"> | |
| <div class="form-group"> | |
| <label for="contactEmail">Email address</label> | |
| <input type="email" class="form-control" id="contactEmail" aria-describedby="emailHelp" placeholder="Enter email" required> | |
| <small class="form-text text-muted">I'll never share your email with anyone else.</small> | |
| </div> | |
| <div class="form-group"> | |
| <label for="contactMessage">Message</label> | |
| <textarea class="form-control" id="contactMessage" rows="3" required></textarea> | |
| </div> | |
| <br> | |
| <button id="contactSubmit" type="submit" class="btn btn-primary">Submit</button> | |
| </form> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment