<?php
// This is an example page to showcase how to integrate Iris in a page.
// Just follow the below three steps and Iris will work in any PHP page.

// STEP 1: session MUST be started and should be the first line of this page
session_start();

Use Iris\ConfigUi;
require_once __DIR__ . '/iris/ConfigUi.php';
?>
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<META NAME="ROBOTS" CONTENT="NOINDEX, NOFOLLOW">
<meta name="viewport" content="width=device-width, initial-scale=1">
<meta name="author" content="Vincy">
<meta name="generator" content="Iris" />
<link href="/css/bootstrap.css" rel="stylesheet">
    <link href="/css/modern-business.css" rel="stylesheet">
    <link href="/font-awesome/css/font-awesome.min.css" rel="stylesheet">
     <link href="/images/favicon.ico" rel="SHORTCUT ICON">
<link rel="stylesheet" type="text/css" href="https://californiaquitclaimdeed.com/iris/assets/css/iris.css">
</head>
<body>
	<?php include 'code/navbar.php'; ?>
	<div class="container">
      
      <div class="row">
      
        <div class="col-lg-12">
          <h1 class="page-header">Contact <small>We'd Love to Hear From You!</small></h1>
          <ol class="breadcrumb">
            <li><a href="/">Home</a></li>
            <li class="active">Contact</li>
          </ol>
        </div>
        
       </div><!-- /.row -->
	
	
	
	
<?php

// STEP 3: include the Iris contact form UI in whichever place you need
require_once __DIR__ . '/iris/form-ui.php';
?>

</div><!-- /.container -->


</body>
</html>
