Skip to content

Instantly share code, notes, and snippets.

@DimitryDushkin
Created January 23, 2017 12:50
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 DimitryDushkin/19c7a8bf32abf3c27a293e1e1aba0460 to your computer and use it in GitHub Desktop.
Save DimitryDushkin/19c7a8bf32abf3c27a293e1e1aba0460 to your computer and use it in GitHub Desktop.
<!DOCTYPE html>
<html>
<head>
<meta charset='utf-8'>
<title>YAF</title>
<style type='text/css'>
body {
padding: 24px;
font-size: 18px;
}
.form-group {
padding: 0 0 16px;
}
</style>
</head>
<body>
<h2>Yet another form</h2>
<form action='/form-handler' method='post'>
<div class='form-group'>
<!-- Required -->
<label>First Name*</label>
<input type='text'>
</div>
<div class='form-group'>
<!-- Required -->
<label>Last Name*</label>
<input type='text'>
</div>
<div class='form-group'>
<!-- Valid e-mail -->
<label>E-mail*</label>
<input type='text'>
</div>
<div class='form-group'>
<!-- Valid date format -->
<label>Birth Date (format: YYYY-MM-DD)</label>
<input type='text'>
</div>
<div class='form-group'>
<input type='submit' value='Send'>
</div>
</form>
</body>
</html>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment