Skip to content

Instantly share code, notes, and snippets.

@chrisbay
Created May 23, 2017 12:18
Show Gist options
  • Star 2 You must be signed in to star a gist
  • Fork 1 You must be signed in to fork a gist
  • Save chrisbay/a3aee22c92915189a01b0d8b824bad10 to your computer and use it in GitHub Desktop.
Save chrisbay/a3aee22c92915189a01b0d8b824bad10 to your computer and use it in GitHub Desktop.
Code from the LaunchCode Unit 2 lesson on form inputs
<!doctype html>
<html>
<body>
<style>
br {margin-bottom: 20px;}
</style>
<form method='POST'>
<label>type=text
<input name="user-name" type="text" />
</label>
<br>
<label>type=password
<input name="user-password" type="password" />
</label>
<br>
<label>type=email
<input name="user-email" type="email" />
</label>
<br>
<input name="shopping-cart-id" value="0129384" type="hidden" />
<br>
<label>Ketchup
<input type="checkbox" name="cb1" value="first-cb" />
</label>
<br>
<label>Mustard
<input type="checkbox" name="cb2" value="second-cb" />
</label>
<br>
<label>Small
<input type="radio" name="coffee-size" value="sm" />
</label>
<label>Medium
<input type="radio" name="coffee-size" value="med" />
</label>
<label>Large
<input type="radio" name="coffee-sizes" value="lg" />
</label>
<br>
<label>Your life story
<textarea name="life-story"></textarea>
</label>
<br>
<label>LaunchCode Hub
<select name="lc-hub">
<option value="kc">Kansas City</option>
<option value="mia">Miami</option>
<option value="ri">Providence</option>
<option value="sea">Seattle</option>
<option value="pdx">Portland</option>
</select>
</label>
<br>
<input type="submit" />
</form>
</body>
</html>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment