www.1671farmbureaurd.com Open in urlscan Pro
3.33.207.30  Public Scan

URL: https://www.1671farmbureaurd.com/
Submission: On October 07 via api from US — Scanned from US

Form analysis 2 forms found in the DOM

<form @submit.prevent="beforeSubmitForm" id="agent-contact-form" novalidate="" class="grid grid-cols-1 gap-y-4 sm:gap-x-8 md:grid-cols-2">
  <div class="flex flex-col gap-2.5">
    <div class="text-left">
      <label for="name" class="text-left mb-2 text-bg-contrast">NAME</label>
      <div class="mt-1 text-left">
        <input type="text" name="name" id="name" autocomplete="name" class="block w-full border-2 border-neutral-200 py-2 px-3 focus:outline-none
                                           focus:ring-0 focus:border-neutral-500">
        <span x-show="!validForm.fields.name.valid" class="error-msg text-bg-contrast">Name cannot be empty</span>
      </div>
    </div>
    <div class="text-left">
      <label for="email" class="text-left mb-2 text-bg-contrast">EMAIL</label>
      <div class="mt-1 text-left">
        <input id="email" name="email" type="email" autocomplete="email" class="block w-full border-2 border-neutral-200 py-2 px-3 focus:outline-none
                                            focus:ring-0 focus:border-neutral-500" data-error-msg="Email address must be a valid address">
        <span x-show="!validForm.fields.email.valid &amp;&amp; validForm.fields.email.rule === 'required'" class="error-msg text-bg-contrast">Email cannot be empty</span>
        <span x-show="!validForm.fields.email.valid &amp;&amp; validForm.fields.email.rule === 'email'" class="error-msg text-bg-contrast">Provide a valid email address</span>
      </div>
    </div>
    <div class="text-left">
      <label for="phone-number" class="text-left mb-2 text-bg-contrast">PHONE</label>
      <div class="mt-1 text-left">
        <input type="text" name="phone" id="phone-number" autocomplete="phone-number" placeholder="(415)555-1234" class="block w-full border-2 border-neutral-200 py-2 px-3 focus:outline-none
                                            focus:ring-0 focus:border-neutral-500" data-error-msg="Phone number cannot be empty">
        <span x-show="!validForm.fields.phone.valid" class="error-msg text-bg-contrast">Phone number cannot be empty</span>
      </div>
    </div>
  </div>
  <div class="flex flex-col">
    <div class="flex justify-between">
      <label for="message" class="text-bg-contrast">MESSAGE</label>
    </div>
    <div class="mt-1 h-full text-left">
      <textarea id="message" name="message" rows="4" placeholder="Write your message here..." class="block w-full h-full border-2 border-neutral-200 py-2 px-3 resize-none
                                          focus:outline-none focus:ring-0 focus:border-neutral-500" aria-describedby="message-max"></textarea>
      <span x-show="!validForm.fields.message.valid" class="error-msg text-bg-contrast">Message cannot be empty</span>
    </div>
  </div>
  <div class="sm:flex sm:justify-center text-sm mt-2 text-bg-contrast md:col-span-2">
    <p>The site is protected by reCAPTCHA and the <a href="https://policies.google.com/privacy" class="hover:underline" target="_blank">Google Privacy Policy</a> and
      <a href="https://policies.google.com/terms" class="hover:underline" target="_blank">Terms of Service</a> apply. </p>
  </div>
  <div class="flex justify-center md:col-span-2">
    <button type="submit" class="button-style mt-1 disabled:cursor-not-allowed disabled:opacity-50
                                    md:!px-12 w-full md:w-auto" id="contact-submit" x-bind:disabled="sendingForm"> Send <i class="fa-duotone fa-spinner-third fa-spin ml-2" x-show="sendingForm"></i>
    </button>
  </div>
</form>

<form @submit.prevent="beforeSubmitForm" id="agent-contact-form" novalidate="" class="grid grid-cols-1 gap-y-4 sm:gap-x-8 md:grid-cols-2">
  <div class="flex flex-col gap-2.5">
    <div class="text-left">
      <label for="name" class="text-left mb-2 text-bg-contrast">NAME</label>
      <div class="mt-1 text-left">
        <input type="text" name="name" id="name" autocomplete="name" class="block w-full border-2 border-neutral-200 py-2 px-3 focus:outline-none
                                           focus:ring-0 focus:border-neutral-500">
        <span x-show="!validForm.fields.name.valid" class="error-msg text-bg-contrast" style="display: none;">Name cannot be empty</span>
      </div>
    </div>
    <div class="text-left">
      <label for="email" class="text-left mb-2 text-bg-contrast">EMAIL</label>
      <div class="mt-1 text-left">
        <input id="email" name="email" type="email" autocomplete="email" class="block w-full border-2 border-neutral-200 py-2 px-3 focus:outline-none
                                            focus:ring-0 focus:border-neutral-500" data-error-msg="Email address must be a valid address">
        <span x-show="!validForm.fields.email.valid &amp;&amp; validForm.fields.email.rule === 'required'" class="error-msg text-bg-contrast" style="display: none;">Email cannot be empty</span>
        <span x-show="!validForm.fields.email.valid &amp;&amp; validForm.fields.email.rule === 'email'" class="error-msg text-bg-contrast" style="display: none;">Provide a valid email address</span>
      </div>
    </div>
    <div class="text-left">
      <label for="phone-number" class="text-left mb-2 text-bg-contrast">PHONE</label>
      <div class="mt-1 text-left">
        <input type="text" name="phone" id="phone-number" autocomplete="phone-number" placeholder="(415)555-1234" class="block w-full border-2 border-neutral-200 py-2 px-3 focus:outline-none
                                            focus:ring-0 focus:border-neutral-500" data-error-msg="Phone number cannot be empty">
        <span x-show="!validForm.fields.phone.valid" class="error-msg text-bg-contrast" style="display: none;">Phone number cannot be empty</span>
      </div>
    </div>
  </div>
  <div class="flex flex-col">
    <div class="flex justify-between">
      <label for="message" class="text-bg-contrast">MESSAGE</label>
    </div>
    <div class="mt-1 h-full text-left">
      <textarea id="message" name="message" rows="4" placeholder="Write your message here..." class="block w-full h-full border-2 border-neutral-200 py-2 px-3 resize-none
                                          focus:outline-none focus:ring-0 focus:border-neutral-500" aria-describedby="message-max"></textarea>
      <span x-show="!validForm.fields.message.valid" class="error-msg text-bg-contrast" style="display: none;">Message cannot be empty</span>
    </div>
  </div>
  <div class="sm:flex sm:justify-center text-sm mt-2 text-bg-contrast md:col-span-2">
    <p>The site is protected by reCAPTCHA and the <a href="https://policies.google.com/privacy" class="hover:underline" target="_blank">Google Privacy Policy</a> and
      <a href="https://policies.google.com/terms" class="hover:underline" target="_blank">Terms of Service</a> apply. </p>
  </div>
  <div class="flex justify-center md:col-span-2">
    <button type="submit" class="button-style mt-1 disabled:cursor-not-allowed disabled:opacity-50
                                    md:!px-12 w-full md:w-auto" id="contact-submit" x-bind:disabled="sendingForm"> Send <i class="fa-duotone fa-spinner-third fa-spin ml-2" x-show="sendingForm" aria-hidden="true" style="display: none;"></i>
    </button>
  </div>
</form>

Text Content

1671 FARM BUREAU ROAD

Toggle navigation
 * Hero
 * Features
 * Gallery
 * Virtual Tour
 * Neighborhood
 * Maps
 * Agent Info
 * Schedule
 * Contact

 * Hero
 * Features
 * Gallery
 * Virtual Tour
 * Neighborhood
 * Maps
 * Agent Info
 * Schedule
 * Contact


PRESENTED BY
AEYSHA CORIO


EXCEPTIONAL CONCORD HOME


$899,999




View more


3D VIRTUAL TOUR




NEIGHBORHOOD

With a population greater than 120,000, and a Bay Area Rapid Transit (BART)
station offering commuting options to Oakland and San Francisco, Concord is a
bustling city in Contra Costa County. Homes include those built in Craftsman,
traditional, and contemporary styles.

Shopping is plentiful, with three major shopping districts. Downtown Concord,
near Todos Santos Plaza, offers a vibrant mix of dining and retail in the
historic area.

Concord Pavilion's open, grassy amphitheater hosts popular bands and artists. A
summer series of music events brings local artists to the farmers' market
downtown, now in its second decade at Todos Santos Plaza. Concord places a big
emphasis on family, and the city offers plenty of parks and open space, as well
as kid-friendly events like KidFest, Dalis Garden Fall Fest and Craft Fair, and
Halloween contests.

Concord is not far from Mount Diablo and its extensive
network of hiking, biking, and equestrian trails. The popular Iron Horse Trail,
which connects Concord and Dublin, is a great place to go for a walk or bike
ride.
Keep reading
With a population greater than 120,000, and a Bay Area Rapid Transit (BART)
station offering commuting options to Oakland and San Francisco, Concord is a
bustling city in Contra Costa County. Homes include those built in Craftsman,
traditional, and contemporary styles.

Shopping is plentiful, with three major shopping districts. Downtown Concord,
near Todos Santos Plaza, offers a vibrant mix of dining and retail in the
historic area.

Concord Pavilion's open, grassy amphitheater hosts popular bands and artists. A
summer series of music events brings local artists to the farmers' market
downtown, now in its second decade at Todos Santos Plaza. Concord places a big
emphasis on family, and the city offers plenty of parks and open space, as well
as kid-friendly events like KidFest, Dalis Garden Fall Fest and Craft Fair, and
Halloween contests.

Concord is not far from Mount Diablo and its extensive
network of hiking, biking, and equestrian trails. The popular Iron Horse Trail,
which connects Concord and Dublin, is a great place to go for a walk or bike
ride.

View more


Aeysha Corio

Compass

DRE: #01924977 Cell: 925.550.7193



aeysha@thecoriogroup.com



www.TheCorioGroup.com


SCHEDULE

There are no upcoming events.

Request an appointment


GET IN TOUCH

NAME
Name cannot be empty
EMAIL
Email cannot be empty Provide a valid email address
PHONE
Phone number cannot be empty
MESSAGE
Message cannot be empty

The site is protected by reCAPTCHA and the Google Privacy Policy and Terms of
Service apply.

Send


GET IN TOUCH

NAME
Name cannot be empty
EMAIL
Email cannot be empty Provide a valid email address
PHONE
Phone number cannot be empty
MESSAGE
Message cannot be empty

The site is protected by reCAPTCHA and the Google Privacy Policy and Terms of
Service apply.

Send


THANK YOU!

Your message has been received. We will reply using one of the contact methods
provided in your submission.


SORRY, THERE WAS A PROBLEM

Your message could not be sent. Please refresh the page and try again in a few
minutes, or reach out directly using the agent contact information below.

Aeysha Corio

Compass

DRE: #01924977 Cell: 925.550.7193

aeysha@thecoriogroup.com

www.TheCorioGroup.com
Email Us Email Us Email Us
Home
Agent Login

Disclaimers

Floor Plans:. All square footage is approximate. Floor plans, dimensions and
square footage are for marketing purposes only.

Schools:. Interested parties should independently verify school district
availability. School attendance is not guaranteed.

Information Accuracy:. Open Homes has not investigated or verified the accuracy
of information on this website. Buyers are responsible for verifying all
information they deem important.

Contact Us
Privacy Policy
Terms of Use
Accessibility Policy
Enable High-Contrast Mode

Follow us:

Facebook
Instagram
Vimeo
Twitter

© 2024 Open Homes Photography
Made with in California

1 / 47

With a population greater than 120,000, and a Bay Area Rapid Transit (BART)
station offering commuting options to Oakland and San Francisco, Concord is a
bustling city in Contra Costa County. Homes include those built in Craftsman,
traditional, and contemporary styles.

Shopping is plentiful, with three major shopping districts. Downtown Concord,
near Todos Santos Plaza, offers a vibrant mix of dining and retail in the
historic area.

Concord Pavilion's open, grassy amphitheater hosts popular bands and artists. A
summer series of music events brings local artists to the farmers' market
downtown, now in its second decade at Todos Santos Plaza. Concord places a big
emphasis on family, and the city offers plenty of parks and open space, as well
as kid-friendly events like KidFest, Dalis Garden Fall Fest and Craft Fair, and
Halloween contests.

Concord is not far from Mount Diablo and its extensive
network of hiking, biking, and equestrian trails. The popular Iron Horse Trail,
which connects Concord and Dublin, is a great place to go for a walk or bike
ride.
1 / 119