Skip to content

Instantly share code, notes, and snippets.

@TheGarkine
Created April 9, 2022 21:56
Show Gist options
  • Select an option

  • Save TheGarkine/e5ff1f0592d981476227103c9f14af23 to your computer and use it in GitHub Desktop.

Select an option

Save TheGarkine/e5ff1f0592d981476227103c9f14af23 to your computer and use it in GitHub Desktop.
<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