Welcome

Client Intake Forms

Choose the form that matches your matter to get started.

Embed on your WordPress site

Paste this snippet into a Custom HTML block where you want the intake forms to appear. The embedded view shows all available forms and lets the client pick the right one.

<iframe id="allwest-intake"
  src="https://westlaw-client-flow.lovable.app/?embed=1"
  style="width:100%;border:0;display:block"
  loading="lazy"
  title="All West Law Group Client Intake"></iframe>
<script>
(function(){
  var f=document.getElementById('allwest-intake');
  window.addEventListener('message',function(e){
    if(e.origin!=='https://westlaw-client-flow.lovable.app')return;
    if(e.data&&e.data.type==='allwest-intake-height'){
      f.style.height=(e.data.height+24)+'px';
    }
  });
})();
</script>