Skip to content

Instantly share code, notes, and snippets.

@dai0304
Created October 14, 2011 08:53
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 dai0304/1286597 to your computer and use it in GitHub Desktop.
Save dai0304/1286597 to your computer and use it in GitHub Desktop.
<?xml version="1.0" encoding="utf-8"?>
<!DOCTYPE html>
<html xmlns="http://www.w3.org/1999/xhtml" lang="ja" dir="ltr"
xmlns:wicket="http://wicket.apache.org/dtds.data/wicket-xhtml1.4-strict.dtd">
<head profile="http://purl.org/net/ns/metaprof">
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
<title>sample form</title>
<meta name="robots" content="noindex,nofollow" />
<meta http-equiv="content-style-type" content="text/css" />
<meta http-equiv="content-script-type" content="text/javascript" />
<meta http-equiv="content-language" content="ja" />
<link rel="stylesheet" href="http://twitter.github.com/bootstrap/1.3.0/bootstrap.min.css">
</head>
<body>
<div class="container">
<h1>sample form</h1>
<form>
<div class="clearfix">
<label for="nickname" class="xlarge">nickname</label>
<div class="input">
<input type="text" id="nickname" class="xlarge" value="都元ダイスケ"/>
</div>
</div>
<div class="clearfix error">
<label for="biography" class="xlarge">biography</label>
<div class="input">
<textarea rows="3" id="biography" name="textarea" class="xlarge">つもとです。</textarea>
</div>
</div>
<div class="clearfix">
<label for="timezone" class="xlarge">time zone</label>
<div class="input">
<select id="timezone">
<option value="Asia/Tokyo">(GMT +09:00) Tokyo</option>
</select>
</div>
</div>
<div class="clearfix error">
<label for="mail" class="xlarge">mail magazine</label>
<div class="input">
<input id="mail" type="checkbox"/>
</div>
</div>
<div class="actions">
<input class="btn primary" type="submit" value="Save" />
<button class="btn" type="reset">Cancel</button>
</div>
</form>
</div>
</body>
</html>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment