src/main/webapp/company/form.html
author Tomas Zeman <tzeman@volny.cz>
Fri, 20 Apr 2012 08:44:36 +0200
changeset 72 077b875a2a0c
parent 69 b1dc0efd1303
permissions -rw-r--r--
Company contacts

<!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>