Skip to content

Instantly share code, notes, and snippets.

@kwhinnery
Last active August 29, 2015 14:06
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save kwhinnery/86780e938cfa198076fa to your computer and use it in GitHub Desktop.
Save kwhinnery/86780e938cfa198076fa to your computer and use it in GitHub Desktop.
<!doctype html>
<html>
<head>
<title>Send A Text</title>
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.2.0/css/bootstrap.min.css">
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.2.0/css/bootstrap-theme.min.css">
</head>
<body>
<div class="container">
<h1>Send A Text!</h1>
<form action="/text" method="POST" role="form">
<div class="form-group">
<label for="phoneNumber">Phone Number</label>
<input type="text" class="form-control" id="phoneNumber" placeholder="Enter a mobile phone number">
</div>
<div class="form-group">
<label for="message">Message</label>
<textarea class="form-control" id="message">Hello There!</textarea>
</div>
<button type="submit" class="btn btn-primary">Send Text</button>
</form>
</div>
</body>
</html>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment