|
15
|
1 |
<!DOCTYPE html>
|
|
|
2 |
<html>
|
|
|
3 |
<head>
|
|
|
4 |
<meta content="text/html; charset=UTF-8" http-equiv="content-type" />
|
|
69
|
5 |
<title>Company form</title>
|
|
15
|
6 |
</head>
|
|
|
7 |
<body class="lift:content_id=main">
|
|
|
8 |
<div id="main" class="lift:surround?with=default;at=content">
|
|
69
|
9 |
<head_merge>
|
|
|
10 |
<script type="text/javascript">
|
|
|
11 |
$(document).ready(function() {
|
|
|
12 |
$('.post-address').toggle($('#has_post_address').is(':checked'));
|
|
|
13 |
$('#has_post_address').bind('change', function() {
|
|
|
14 |
$('.post-address').toggle($(this).is(':checked'));
|
|
|
15 |
});
|
|
|
16 |
});
|
|
|
17 |
</script>
|
|
|
18 |
</head_merge>
|
|
|
19 |
|
|
41
|
20 |
<div class="row">
|
|
|
21 |
<div class="span12">
|
|
|
22 |
<span class="lift:form"></span>
|
|
|
23 |
</div>
|
|
|
24 |
</div> <!-- /row -->
|
|
15
|
25 |
</div>
|
|
|
26 |
</body>
|
|
|
27 |
</html>
|
|
|
28 |
|
|
|
29 |
|