Updated Branches: refs/heads/master a586a1af6 -> 3ae1187eb
Simplify layout Project: http://git-wip-us.apache.org/repos/asf/tapestry-5/repo Commit: http://git-wip-us.apache.org/repos/asf/tapestry-5/commit/3ae1187e Tree: http://git-wip-us.apache.org/repos/asf/tapestry-5/tree/3ae1187e Diff: http://git-wip-us.apache.org/repos/asf/tapestry-5/diff/3ae1187e Branch: refs/heads/master Commit: 3ae1187ebc9428c5fa5de030320d31596867de41 Parents: a586a1a Author: Howard M. Lewis Ship <[email protected]> Authored: Tue Sep 3 17:11:05 2013 -0700 Committer: Howard M. Lewis Ship <[email protected]> Committed: Tue Sep 3 17:11:05 2013 -0700 ---------------------------------------------------------------------- .../kaptcha/demo/pages/KaptchaDemo.tml | 23 +++++++------------- 1 file changed, 8 insertions(+), 15 deletions(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/tapestry-5/blob/3ae1187e/tapestry-kaptcha/src/test/resources/kaptcha/demo/pages/KaptchaDemo.tml ---------------------------------------------------------------------- diff --git a/tapestry-kaptcha/src/test/resources/kaptcha/demo/pages/KaptchaDemo.tml b/tapestry-kaptcha/src/test/resources/kaptcha/demo/pages/KaptchaDemo.tml index 228eb0f..5f30d5f 100644 --- a/tapestry-kaptcha/src/test/resources/kaptcha/demo/pages/KaptchaDemo.tml +++ b/tapestry-kaptcha/src/test/resources/kaptcha/demo/pages/KaptchaDemo.tml @@ -3,23 +3,16 @@ <p id="message">${message}</p> - <t:form t:id="form"> - <t:errors/> - - <div class="form-group"> + <t:form t:id="form"> + <t:errors/> + <div class="form-group"> <t:kaptchaimage t:id="ki"/> - </div> - - <div class="form-group"> - - <t:label for="kf" class="col-2"/> - <div class="col-md-2"> - <t:kaptchafield label="Security Check" t:id="kf" image="ki"/> - </div> - </div> + <t:label for="kf"/> + <t:kaptchafield label="Security Check" t:id="kf" image="ki"/> + </div> - <input class="btn btn-primary" type="submit" value="Go"/> - </t:form> + <input class="btn btn-primary" type="submit" value="Go"/> + </t:form> </t:layout> \ No newline at end of file
