src/main/webapp/company/form.html
changeset 69 b1dc0efd1303
parent 41 216eac8b08b4
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/src/main/webapp/company/form.html	Fri Apr 20 08:26:24 2012 +0200
@@ -0,0 +1,29 @@
+<!DOCTYPE html>
+<html>
+  <head>
+    <meta content="text/html; charset=UTF-8" http-equiv="content-type" />
+    <title>Company form</title>
+  </head>
+  <body class="lift:content_id=main">
+    <div id="main" class="lift:surround?with=default;at=content">
+      <head_merge>
+        <script type="text/javascript">
+        $(document).ready(function() {
+          $('.post-address').toggle($('#has_post_address').is(':checked'));
+          $('#has_post_address').bind('change', function() {
+            $('.post-address').toggle($(this).is(':checked'));
+          });
+        });
+        </script>
+      </head_merge>
+
+      <div class="row">
+        <div class="span12">
+          <span class="lift:form"></span>
+        </div>
+      </div> <!-- /row -->
+    </div>
+  </body>
+</html>
+
+