www.arborite.com Open in urlscan Pro
15.197.204.96  Public Scan

Submitted URL: http://arborite.com/
Effective URL: https://www.arborite.com/
Submission Tags: tranco_l324
Submission: On May 25 via api from DE — Scanned from DE

Form analysis 6 forms found in the DOM

GET https://www.arborite.com/catalogsearch/result/

<form class="form minisearch" id="search_mini_form288464" action="https://www.arborite.com/catalogsearch/result/" method="get">
  <div class="field search">
    <label class="label" for="search_444179" data-role="minisearch-label">
    </label>
    <div class="control">
      <input id="search_444179" type="text" name="q" value="" placeholder="Search entire store here..." class="input-text loaded" maxlength="128" role="combobox" aria-haspopup="false" aria-autocomplete="both" autocomplete="off">
      <span class="or_search">or</span>
      <div data-block="dropdown" class="minicart-wrapper advanced-search-btn">
        <button type="button" class="action" id="adv_button" data-trigger="trigger">
          <span>Find Your Surface</span>
        </button>
        <div tabindex="-1" role="dialog" class="ui-dialog ui-corner-all ui-widget ui-widget-content ui-front mage-dropdown-dialog" aria-describedby="ui-id-3" style="display: none;">
          <div class="block block-minicart advancesearch-widget ui-dialog-content ui-widget-content" style="" id="ui-id-3">
            <div id="minicart-content-wrapper">
              <div class="advanced-search-header">
                <h1>Find Your Surface</h1>
                <span class="filter-close-btn">X</span>
                <div id="ajaxUrl" style="display:none">https://www.arborite.com/advancedsearch/advanced/filterproductattributes/</div>
              </div>
              <div class="fys_all_group">
                <div class="advsearch-category-group">
                  <h1>Surface Type</h1>
                  <ul>
                    <li>
                      <input name="category_option" class="category_option categories" id="category_option_218" type="checkbox" value="218">
                      <label for="category_option_218"> Standard collection </label>
                    </li>
                    <li>
                      <input name="category_option" class="category_option categories" id="category_option_224" type="checkbox" value="224">
                      <label for="category_option_224"> Premium Collection </label>
                    </li>
                    <li>
                      <input name="category_option" class="category_option categories" id="category_option_282" type="checkbox" value="282">
                      <label for="category_option_282"> Specialty collection </label>
                    </li>
                    <li>
                      <input name="category_option" class="category_option" id="category_option_notsure" type="checkbox" value="notsure">
                      <label for="category_option_notsure">I am not sure</label>
                    </li>
                  </ul>
                </div>
                <div class="advsearch-design-group" style="display: none">
                  <h1>Design Group</h1>
                </div>
                <div class="advsearch-color-group" style="display: none">
                  <h1>Color Group</h1>
                </div>
                <div class="advsearch-finish-group" style="display: none">
                  <!--<div class="only_standard">
                    <input type="checkbox"  id ="standard_finish" value="1" name="standard_finish"  />
                    <label for="standard_finish"></label>	
                </div>-->
                  <div class="finish_header">
                    <h1>Finishes<span>+</span></h1>
                  </div>
                  <div class="content" style="display: none;"></div>
                </div>
              </div>
            </div>
            <span class="adv-error"></span>
            <div class="fys_buttons">
              <button type="button" class="reset-btn" name="advance_search_reset" disabled="">Reset</button>
              <button type="button" class="search-btn" id="search-btn" name="advance_search_submit" disabled="">Search</button>
            </div>
          </div>
        </div>
      </div>
      <style type="text/css">
        .adv-error {
          display: block;
          color: #e31b2c;
          font-size: 14px;
          margin: 10px 0px;
        }
      </style>
      <script type="text/javascript">
        require(["jquery"], function($) {
          $(document).ready(function() {
            $("#minicart-content-wrapper").show();
            //$("#category_option_notsure").click();	
            $(".category_option").click(function() {
              $("#category_option_notsure").removeAttr("disabled");
              if (this.id != 'category_option_notsure') {
                $("#category_option_notsure").prop("checked", false);
                $("#category_option_notsure").attr("disabled", true);
              } else {
                $("#category_option_notsure").prop("checked", true);
              }
              $(".adv-error").hide(); /* validation error msg hide */
              var categories = [];
              $(".category_option:checked").each(function() {
                var catId = $(this).val();
                categories.push(catId);
              });
              /* notsure checkobox logic */
              if (!categories.length) {
                $("#category_option_notsure").prop("disabled", false);
                $("#category_option_notsure").trigger('click');
              }
              /* Button enable/disable  */
              if (categories.length) {
                $('.search-btn').prop('disabled', false);
                $('.reset-btn').prop('disabled', false);
              } else {
                $('.search-btn').prop('disabled', true);
                $('.reset-btn').prop('disabled', true);
              }
              /* Button enable/disable  */
              //var categoryIds = categories.join(",");
              var customurl = "https://www.arborite.com/advancedsearch/advancedsearch/index/";
              $.ajax({
                url: customurl,
                type: 'POST',
                dataType: 'json',
                showLoader: true, //use for display loader
                data: {
                  categories: categories,
                  filterkey: true
                },
                complete: function(response) {
                  output = response.responseJSON.output;
                  //console.log(output);
                  /** design  group */
                  $(".advsearch-design-group").hide();
                  if (output.design.length) {
                    $('.advsearch-design-group').find('ul').remove();
                    var designul = $("<ul>"); // create a new ul element
                    for (var i = 0, l = output.design.length; i < l; ++i) {
                      var designGrayOutClass = (output.design[i].dis) ? "gray_out" : '';
                      designul.append('<li class="' + designGrayOutClass + '"><input type="checkbox" class = "design_groups" name="design_groups[]" id="design_group_' + output.design[i].value + '" value="' + output.design[i].value +
                        '" ' + output.design[i].dis + ' > <label for="design_group_' + output.design[i].value + '">' + output.design[i].label + '</label></li>');
                    }
                    $(".advsearch-design-group").append(designul); // add the list to the DOM
                    $(".advsearch-design-group").show();
                  }
                  /** color group */
                  $(".advsearch-color-group").hide();
                  if (output.color.length) {
                    $('.advsearch-color-group').find('ul').remove();
                    var colorul = $("<ul>");
                    for (var i = 0, l = output.color.length; i < l; ++i) {
                      var colorGrayOutClass = (output.color[i].dis) ? "gray_out" : '';
                      colorul.append('<li class="' + colorGrayOutClass + '" ><input type="checkbox" class = "color_groups"  name="color_groups[]" id="color_group_' + output.color[i].value + '" value="' + output.color[i].value +
                        '" ' + output.color[i].dis + '> <label for="color_group_' + output.color[i].value + '">' + output.color[i].label + '</label></li>');
                    }
                    $(".advsearch-color-group").append(colorul); // add the list to the DOM
                    $(".advsearch-color-group").show();
                  }
                  /** Finishes */
                  $(".advsearch-finish-group").hide();
                  if (output.finish.length) {
                    $('.advsearch-finish-group').find('ul').remove();
                    var finishul = $("<ul>");
                    for (var i = 0, l = output.finish.length; i < l; ++i) {
                      var finishGrayOutClass = (output.finish[i].dis) ? "gray_out" : '';
                      finishul.append('<li class="' + finishGrayOutClass + '"  ><input type="checkbox" class = "pa_finish" id="pa_finish_' + output.finish[i].value + '"  name="pa_finish[]" value="' + output.finish[i].value + '" ' +
                        output.finish[i].dis + ' > <label for="pa_finish_' + output.finish[i].value + '">' + output.finish[i].label + '</label></li>');
                    }
                    $(".advsearch-finish-group .content").append(finishul); // add the list to the DOM
                    $(".advsearch-finish-group").show();
                  }
                },
                error: function(xhr, status, errorThrown) {
                  console.log('Error happens. Try again again.');
                }
              });
            });
            /** Submit Advance Search button **/
            $("#search-btn").click(function() {
              /* Validation check */
              var checkboxChecks = [];
              $(".advancesearch-widget").find("input[type=checkbox]:checked").each(function() {
                var checks = $(this).val();
                //console.log(catId);
                checkboxChecks.push(checks);
              });
              $(".adv-error").hide();
              //console.log(checkboxChecks.length);
              if (!checkboxChecks.length) {
                $(".adv-error").text("Please select atleast one option");
                $(".adv-error").show();
                return false;
              }
              /* Validation check */
              /** categories click **/
              var categories = [];
              $(".category_option:checked").each(function() {
                var catId = $(this).val();
                //console.log(catId);
                categories.push(catId);
              });
              var categoryIds = categories.join("&category_option[]=");
              //console.log("categoryOptionIds: "+categoryIds);			
              /** designgrps click **/
              var designGroups = [];
              $(".design_groups:checked").each(function() {
                var designId = $(this).val();
                //console.log(designId);
                designGroups.push(designId);
              });
              var designGroupsIds = designGroups.join("&design_groups[]=");
              //console.log("designGroupsIds: "+designGroupsIds);								
              /** designgrps click **/
              var colorGroups = [];
              $(".color_groups:checked").each(function() {
                var colorId = $(this).val();
                colorGroups.push(colorId);
              });
              var colorGroupsIds = colorGroups.join("&color_groups[]=");
              //console.log("colorGroupsIds: "+colorGroupsIds);
              /** finish click **/
              var finish = [];
              $(".pa_finish:checked").each(function() {
                var finishId = $(this).val();
                //console.log(finishId);
                finish.push(finishId);
              });
              var finishIds = finish.join("&pa_finish[]=");
              if ($("#standard_finish").prop('checked') == true) {
                var finishIds = finishIds + "&standard_finish=1";
              }
              //console.log("finishIds: "+finishIds);
              var queryString = '';
              queryString += (categoryIds != '' ? "category_option[]=" + categoryIds : '');
              queryString += (designGroupsIds != '' ? "&design_groups[]=" + designGroupsIds : '');
              queryString += (colorGroupsIds != '' ? "&color_groups[]=" + colorGroupsIds : '');
              queryString += (finishIds != '' ? "&pa_finish[]=" + finishIds : '');
              var encodedQueryString = encodeURI(queryString);
              // similar behavior as clicking on a link
              window.location.href = "https://www.arborite.com/advance-search?" + encodedQueryString;
            });
            //Close button		  
            $(".filter-close-btn").click(function() {
              $(".advancesearch-widget").dropdownDialog("close");
            });
            /*Expand Collapse Start */
            $(".finish_header").click(function() {
              $header = $(this);
              //getting the next element
              $content = $header.next();
              //open up the content needed - toggle the slide- if visible, slide up, if not slidedown.
              $content.slideToggle(500, function() {
                //execute this after slideToggle is done
                //change text of header based on visibility of content div
                $header.find('span').text(function() {
                  //change text based on condition
                  return $content.is(":visible") ? "-" : "+";
                });
              });
            });
            /*Expand Collapse  END*/
            /**	advanced button CLICK	**/
            $("#adv_button").click(function() {
              if (!$('#category_option_notsure').is(':disabled') && $('#category_option_notsure').is(':checked') == false) {
                $("#category_option_notsure").trigger('click');
              }
            });
            $(".reset-btn").click(function() {
              $('.category_option').prop('checked', false);
              $("#category_option_notsure").prop('disabled', false);
              $("#category_option_notsure").trigger('click');
            });
            var dataLayer = [];
            $('#search-btn').click(function(e) {
              var label = [];
              $('.fys_all_group input[type="checkbox"]:checked').each(function() {
                label.push($(this).next("label").text());
              });
              dataLayer.push({
                'event': 'allClicks',
                'data': {
                  'eventCategory': 'Find your surface',
                  'eventAction': 'Search',
                  'eventLabel': label.join(", ")
                }
              });
            });
            $('.reset-btn').click(function(e) {
              dataLayer.push({
                'event': 'allClicks',
                'data': {
                  'eventCategory': 'Find your surface',
                  'eventAction': 'Reset',
                  'eventLabel': ''
                }
              });
            });
            $('.advsearch-category-group input[type=checkbox]').change(function() {
              var label = $(this).next("label").text();
              dataLayer.push({
                'event': 'allClicks',
                'data': {
                  'eventCategory': 'Find your surface',
                  'eventAction': 'Surface Type',
                  'eventLabel': label
                }
              });
            });
          });
        });
        require(["jquery"], function($) {
          $(document).on('change', '.advsearch-design-group input[type=checkbox]', function() {
            var label = $(this).next("label").text();
            dataLayer.push({
              'event': 'allClicks',
              'data': {
                'eventCategory': 'Find your surface',
                'eventAction': 'Design Group',
                'eventLabel': label
              }
            });
          });
          $(document).on('change', '.advsearch-color-group input[type=checkbox]', function() {
            var label = $(this).next("label").text();
            dataLayer.push({
              'event': 'allClicks',
              'data': {
                'eventCategory': 'Find your surface',
                'eventAction': 'Color Group',
                'eventLabel': label
              }
            });
          });
          $(document).on('change', '.advsearch-finish-group input[type=checkbox]', function() {
            var label = $(this).next("label").text();
            dataLayer.push({
              'event': 'allClicks',
              'data': {
                'eventCategory': 'Find your surface',
                'eventAction': 'Finishes',
                'eventLabel': label
              }
            });
          });
        });
      </script>
      <script>
        var MAGE_VERSION = "2.4.5";

        function compareVersions(installed, required) {
          var a = installed.split('.');
          var b = required.split('.');
          for (var i = 0; i < a.length; ++i) {
            a[i] = Number(a[i]);
          }
          for (var i = 0; i < b.length; ++i) {
            b[i] = Number(b[i]);
          }
          if (a.length == 2) {
            a[2] = 0;
          }
          if (a[0] > b[0]) return true;
          if (a[0] < b[0]) return false;
          if (a[1] > b[1]) return true;
          if (a[1] < b[1]) return false;
          if (a[2] > b[2]) return true;
          if (a[2] < b[2]) return false;
          return true;
        }
      </script>
      <div id="ea_search_autocomplete" class="top-arrow-primary ea-search-autocomplete no-result">
        <div class="content">
          <!--        <div class="left wyomind-bg-secondary hidden">
            <div id="ea-suggests"></div>
            <div id="ea-categories"></div>
            <div id="ea-cms"></div>
            <div id="ea-others"></div>
        </div>-->
          <div class="right wyomind-bg-primary searchResultsMain customScrollBar2">
            <div id="ea-products" class="eaProducts"></div>
            <div id="ea-techresources" class="eaTechresources"></div>
            <div id="ea-cms" class="eaCms"></div>
            <div id="ea-all-results" class="eaAllResults"></div>
          </div>
        </div>
        <div id="ea-search-autocomplete-no-result" class="top-arrow-primary ea-search-autocomplete-no-result">
          <div class="content wyomind-bg-secondary wyomind-primary-border"> No products found </div>
        </div>
      </div>
    </div>
  </div>
  <div class="actions">
    <button type="submit" title="Search" class="action search" disabled="">
      <span>Search</span>
    </button>
  </div>
</form>

<form class="form-fake-email" id="social-form-fake-email" novalidate="novalidate">
  <fieldset class="fieldset" data-hasrequired="* Required Fields">
    <div class="field note">Please enter your email address below to create account.</div>
    <div class="field email required">
      <label for="email_address" class="label"><span>Email</span></label>
      <div class="control">
        <input type="email" name="realEmail" alt="email" id="real_email_address" class="input-text" data-validate="{required:true, 'validate-email':true}" aria-required="true">
      </div>
    </div>
  </fieldset>
  <div class="actions-toolbar">
    <div class="primary">
      <button type="button" id="bnt-social-login-fake-email" class="action send primary">
        <span>Submit</span>
      </button>
    </div>
  </div>
</form>

<form class="form-customer-login" id="social-form-login" novalidate="novalidate">
  <input name="form_key" type="hidden" value="EVwu9YVhh1jpK0BW">
  <fieldset class="fieldset login" data-hasrequired="* Required Fields">
    <div class="field email required">
      <label class="label" for="social_login_email"><span>Email</span></label>
      <div class="control">
        <input name="username" id="social_login_email" type="email" class="input-text" value="" autocomplete="off" title="Email" data-validate="{required:true, 'validate-email':true}" aria-required="true">
      </div>
    </div>
    <div class="field password required">
      <label for="pass" class="label"><span>Password</span></label>
      <div class="control">
        <input name="password" id="social_login_pass" type="password" class="input-text" autocomplete="off" title="Password" data-validate="{required:true, 'validate-password':true}" aria-required="true">
      </div>
    </div>
    <!-- BLOCK social-login-captcha --><!-- /BLOCK social-login-captcha -->
    <div class="actions-toolbar">
      <div class="primary">
        <button type="button" class="action login primary" id="bnt-social-login-authentication">
          <span>Login</span>
        </button>
      </div>
      <div class="secondary">
        <a class="action remind" href="#"><span>Forgot Your Password?</span></a>
      </div>
    </div><br>
    <div class="actions-toolbar">
      <div class="primary">
        <a class="action create" href="#"><span>Create New Account?</span></a>
      </div>
    </div>
  </fieldset>
</form>

<form class="form-customer-create" id="social-form-create" novalidate="novalidate">
  <fieldset class="fieldset create info">
    <input type="hidden" name="success_url" value="">
    <input type="hidden" name="error_url" value="">
    <div class="field field-name-firstname required">
      <label class="label" for="firstname"><span>First Name</span></label>
      <div class="control"><input type="text" id="firstname" name="firstname" value="" title="First Name" class="input-text required-entry" data-validate="{required:true}" autocomplete="off" aria-required="true">
      </div>
    </div>
    <div class="field field-name-lastname required">
      <label class="label" for="lastname"><span>Last Name</span></label>
      <div class="control"><input type="text" id="lastname" name="lastname" value="" title="Last Name" class="input-text required-entry" data-validate="{required:true}" autocomplete="off" aria-required="true">
      </div>
    </div>
    <div class="field required">
      <label for="email_address" class="label"><span>Email</span></label>
      <div class="control">
        <input type="email" name="email" id="email_address_create" value="" title="Email" class="input-text" data-validate="{required:true, 'validate-email':true}" aria-required="true">
      </div>
    </div>
  </fieldset>
  <fieldset class="fieldset create account" data-hasrequired="* Required Fields">
    <div class="field password required">
      <label for="password" class="label"><span>Password</span></label>
      <div class="control">
        <input type="password" name="password" id="password-social" title="Password" class="input-text" data-validate="{required:true}" autocomplete="off" aria-required="true">
      </div>
    </div>
    <div class="field group_id required">
      <label class="label"><span>I'm a</span></label>
      <div class="control">
        <ul>
          <li>
            <input type="radio" id="Homeowner" name="group_id" value="2" data-validate="{'validate-one-required-by-name':true}" aria-required="true">
            <label for="Homeowner<">Homeowner</label>
          </li>
          <li>
            <input type="radio" id="Professional" name="group_id" value="48" data-validate="{'validate-one-required-by-name':true}" aria-required="true">
            <label for="Professional<">Professional</label>
          </li>
        </ul>
      </div>
    </div>
    <div class="field company company_select" style="display:none;">
      <label for="company" class="label"><span>Company</span></label>
      <div class="control">
        <input type="text" name="company" id="company" value="" title="Company" class="input-text">
      </div>
      <span class="company_message" style="display:none; color: #e31b2c;margin-left: 140px;">This is a required field.</span>
    </div>
    <div class="field newsletter_industry_select" style="display:none;">
      <label class="label">
        <span>What industries do you service?</span>
      </label>
      <ul>
        <li>
          <input name="industries[]" class="industry_type" type="checkbox" id="Education" value="Education">
          <span>Education</span>
        </li>
        <li>
          <input name="industries[]" class="industry_type" type="checkbox" id="Office" value="Office">
          <span>Office</span>
        </li>
        <li>
          <input name="industries[]" class="industry_type" type="checkbox" id="Hospitality" value="Hospitality">
          <span>Hospitality</span>
        </li>
        <li>
          <input name="industries[]" class="industry_type" type="checkbox" id="Healthcare" value="Healthcare">
          <span>Healthcare</span>
        </li>
        <li>
          <input name="industries[]" class="industry_type" type="checkbox" id="Residential" value="Residential">
          <span>Residential</span>
        </li>
        <li>
          <input name="industries[]" class="industry_type" type="checkbox" id="Retail" value="Retail">
          <span>Retail</span>
        </li>
      </ul>
      <span class="industry_message" style="display:none; color: #e31b2c;">Please Select Industry</span>
    </div>
    <div class="field role" style="display:none;">
      <label class="label">
        <span>What is your primary role?</span>
      </label>
      <select id="role" class="dialog_select" title="Role" name="role">
      </select>
    </div>
    <div class="field choice newsletter" style="display:none">
      <input type="checkbox" class="checkbox" name="is_subscribed" title="Sign Up for Newsletter" value="1" id="is_subscribed" checked="checked">
      <label for="is_subscribed" class="label"><span>Sign Up for Newsletter</span></label>
    </div>
    <!-- BLOCK social-create-captcha --><!-- /BLOCK social-create-captcha -->
  </fieldset>
  <div class="g-recaptcha" id="mp_recaptcha_0">
    <div style="width: 304px; height: 78px;">
      <div><iframe title="reCAPTCHA" width="304" height="78" role="presentation" name="a-ygggieymrx13" frameborder="0" scrolling="no"
          sandbox="allow-forms allow-popups allow-same-origin allow-scripts allow-top-navigation allow-modals allow-popups-to-escape-sandbox allow-storage-access-by-user-activation"
          src="https://www.google.com/recaptcha/api2/anchor?ar=1&amp;k=6LdV3LwZAAAAANMoikurvFmvfDQoZleNG2tpSHFw&amp;co=aHR0cHM6Ly93d3cuYXJib3JpdGUuY29tOjQ0Mw..&amp;hl=en&amp;v=joHA60MeME-PNviL59xVH9zs&amp;theme=light&amp;size=normal&amp;badge=bottomleft&amp;cb=y6rw45bzzsgk"></iframe>
      </div><textarea id="g-recaptcha-response" name="g-recaptcha-response" class="g-recaptcha-response"
        style="width: 250px; height: 40px; border: 1px solid rgb(193, 193, 193); margin: 10px 25px; padding: 0px; resize: none; display: none;"></textarea>
    </div><iframe style="display: none;"></iframe>
  </div>
  <div class="g-recaptcha-error" style="display:none;color:red">Please select the captcha</div><input type="checkbox" style="visibility: hidden" data-validate="{required:false}" class="mage-error" name="mp_recaptcha_0">
  <div class="actions-toolbar">
    <div class="agreeTerms">
      <p>By submitting this form, you are consenting to receive marketing emails from Arborite and associated brands. You can revoke your consent to receive emails at any time by using the unsubscribe link found at the bottom of every email. See our
        <a href="/privacy-policy" target="_blank">Privacy Policy</a> for more information.</p>
    </div>
    <div class="primary">
      <button type="button" id="button-create-social" class="action create primary" title="Create an Account">
        <span>Create an Account</span></button>
      <div class="secondary">
        <a class="action back" href="#"><span>Back</span></a>
      </div>
    </div>
  </div>
</form>

<form class="form-password-forget" id="social-form-password-forget" novalidate="novalidate">
  <fieldset class="fieldset" data-hasrequired="* Required Fields">
    <div class="field note">Please enter your email address below to receive a password reset link.</div>
    <div class="field email required">
      <label for="email_address" class="label"><span>Email</span></label>
      <div class="control">
        <input type="email" name="email" alt="email" id="email_address_forgot" class="input-text" value="" data-validate="{required:true, 'validate-email':true}" aria-required="true">
      </div>
    </div>
    <!-- BLOCK social-forgot-password-captcha --><!-- /BLOCK social-forgot-password-captcha -->
  </fieldset>
  <div class="actions-toolbar">
    <div class="primary">
      <button type="button" id="bnt-social-login-forgot" class="action send primary">
        <span>Submit</span>
      </button>
      <div class="secondary">
        <a class="action back" href="#"><span>Go back</span></a>
      </div>
    </div>
  </div>
</form>

POST

<form class="form form-login" method="post" data-bind="event: {submit: login }" id="login-form">
  <div class="fieldset login" data-bind="attr: {'data-hasrequired': $t('* Required Fields')}" data-hasrequired="* Required Fields">
    <div class="field email required">
      <label class="label" for="customer-email"><span data-bind="i18n: 'Email Address'">Email Address</span></label>
      <div class="control">
        <input name="username" id="customer-email" type="email" class="input-text" data-mage-init="{&quot;mage/trim-input&quot;:{}}" data-bind="attr: {autocomplete: autocomplete}" data-validate="{required:true, 'validate-email':true}"
          autocomplete="off">
      </div>
    </div>
    <div class="field password required">
      <label for="pass" class="label"><span data-bind="i18n: 'Password'">Password</span></label>
      <div class="control">
        <input name="password" type="password" class="input-text" id="pass" data-bind="attr: {autocomplete: autocomplete}" data-validate="{required:true}" autocomplete="off">
      </div>
    </div>
    <!-- ko foreach: getRegion('additional-login-form-fields') -->
    <!-- ko template: getTemplate() -->
    <input name="captcha_form_id" type="hidden" data-bind="value: formId,  attr: {'data-scope': dataScope}" value="user_login" data-scope="">
    <!-- ko if: (isRequired() && getIsVisible())--><!-- /ko -->
    <!-- /ko -->
    <!-- /ko -->
    <div class="actions-toolbar">
      <input name="context" type="hidden" value="checkout">
      <div class="primary">
        <button type="submit" class="action action-login secondary" name="send" id="send2">
          <span data-bind="i18n: 'Sign In'">Sign In</span>
        </button>
      </div>
      <div class="secondary">
        <a class="action" data-bind="attr: {href: forgotPasswordUrl}" href="https://www.arborite.com/customer/account/forgotpassword/">
                                <span data-bind="i18n: 'Forgot Your Password?'">Forgot Your Password?</span>
                            </a>
      </div>
    </div>
  </div>
</form>

Text Content

JavaScript seems to be disabled in your browser. For the best experience on our
site, be sure to turn on Javascript in your browser.

Skip to Content
 * Find a Rep
 * Contact Us
 * Order Samples
 * Subscribe

My Cart
My Cart 0
My Cart
You have no items in your shopping cart.
 * Account
 * Register

Language
EN
 * FR

   
 * 

Toggle Nav
Search
or
Find Your Surface


FIND YOUR SURFACE

X
https://www.arborite.com/advancedsearch/advanced/filterproductattributes/


SURFACE TYPE

 * Standard collection
 * Premium Collection
 * Specialty collection
 * I am not sure


DESIGN GROUP


COLOR GROUP


FINISHES+


Reset Search
No products found
Search
Menu
 * Products
   * What's New?
     * Explore
     * Complete Collection
   * Decorative Laminates
     * Complete Collection
     * Abstracts
     * Woodgrains
     * Solids
     * Textures
   * Anti-Fingerprint
     * Explore
     * Complete Collection
   * Artisan Walnuts
     * Explore
     * Complete Collection
   * Stone Looks
     * Explore
     * Complete Collection
   * Performance Solutions
     * Anti-Fingerprint
     * ArboChem
     * ColorEdge
     * Compact Grade
     * High Wear Laminate
     * Fire Rated
   * Bold + Fun Options
     * Explore
     * Complete Collection
 * Applications
   * Retail
   * Education
   * Healthcare
   * Hospitality
   * Residential
   * Office
 * Cleanability
 * Ideas
   * Visualizer
   * Blog
   * Case Studies
 * Where to Buy
   * Commercial Buyers
 * Technical Resources
   * HPL Technical Guides
   * Fabrication
   * Sustainability
   * Safety Data Sheets (SDS)
   * Reference Materials
   * Care & Maintenance
   * Warranty
   * Brochures
 * Company
   * History
   * Press Room
   * Wilsonart Global


Account
 * Account
 * Register

   
 * 




REAL EMAIL ADDRESS IS REQUIRED TO SOCIAL NETWORKS

Please enter your email address below to create account.
Email

Submit


SIGN IN

Registered Customers
Email

Password

Login
Forgot Your Password?

Create New Account?


CREATE NEW ACCOUNT

First Name

Last Name

Email

Password

I'm a
 * Homeowner
 * Professional

Company

This is a required field.
What industries do you service?
 * Education
 * Office
 * Hospitality
 * Healthcare
 * Residential
 * Retail

Please Select Industry
What is your primary role?
Sign Up for Newsletter

Please select the captcha

By submitting this form, you are consenting to receive marketing emails from
Arborite and associated brands. You can revoke your consent to receive emails at
any time by using the unsubscribe link found at the bottom of every email. See
our Privacy Policy for more information.

Create an Account
Back


FORGOT PASSWORD

Please enter your email address below to receive a password reset link.
Email

Submit
Go back



 * Learn More
 * Learn More
 * Learn More
 * Learn More
 * Learn More
 * Learn More
 * Learn More

 1. 1
 2. 2
 3. 3
 4. 4
 5. 5

 * Previous
 * Next


NEW

New

The designs in our new collection are at home in neutral color schemes but can
also work seamlessly with pops of color.

See more


WOODGRAINS

Woodgrains

Our wood-grain laminate panels marry prized wood textures and hues with the ease
and versatility of laminate

See more


PATTERNS AND ABSTRACTS

Patterns and Abstracts

See a wide array of patterns for many applications, delivering contemporary good
looks, durability and versatility.

See more


SOLIDS

Solids

Solid color high pressure laminate offer a timeless, contemporary look with
incredible durability.

See more


PANORAMA

Panorama

The Panorama collection offers grand vistas of luxurious marble, majestic
granite, and warm travertine.

See more


WELCOME HOME

Welcome Home

Featuring subtle, neutral palettes of composite-stone, this collection allows
you to add nuance to any space.

See more


INK COLLECTION

Ink

Working with leading designers, the Ink collection features innovative designs
applied to high pressure laminate.

See more


TEXTURES

Textures

Complement your laminate with luxurious sheens, delicate beading, or subtle
embossments. 

See more




NEW COLLECTION

See more

ARTISAN WALNUT

See more

STONE LOOKS

See more

ANTI-FINGERPRINT LAMINATE

See more

WOODGRAINS

See more

INK COLLECTION

See more

 * Learn More
 * Learn More
 * Learn More
 * Learn More
 * Learn More
 * Learn More
 * Learn More

 1. 1
 2. 2
 3. 3
 4. 4
 5. 5

 * Previous
 * Next


NEW

New

The designs in our new collection are at home in neutral color schemes but can
also work seamlessly with pops of color.

See more


WOODGRAINS

Woodgrains

Our wood-grain laminate panels marry prized wood textures and hues with the ease
and versatility of laminate

See more


PATTERNS AND ABSTRACTS

Patterns and Abstracts

See a wide array of patterns for many applications, delivering contemporary good
looks, durability and versatility.

See more


SOLIDS

Solids

Solid color high pressure laminate offer a timeless, contemporary look with
incredible durability.

See more


PANORAMA

Panorama

The Panorama collection offers grand vistas of luxurious marble, majestic
granite, and warm travertine.

See more


WELCOME HOME

Welcome Home

Featuring subtle, neutral palettes of composite-stone, this collection allows
you to add nuance to any space.

See more


INK COLLECTION

Ink

Working with leading designers, the Ink collection features innovative designs
applied to high pressure laminate.

See more


TEXTURES

Textures

Complement your laminate with luxurious sheens, delicate beading, or subtle
embossments. 

See more




NEW COLLECTION

See more

ARTISAN WALNUT

See more

STONE LOOKS

See more

ANTI-FINGERPRINT LAMINATE

See more

WOODGRAINS

See more

INK COLLECTION

See more



CLICK HERE TO DESIGN YOUR SPACE

Visualizer


STAY UP TO DATE

Get Arborite product news right in your box

Subscribe


SUPER QUICK, FREE, SAMPLE DELIVERY

Order samples


ABOUT US

Established in Canada in 1948, Arborite® is synonymous with quality
high-pressure laminate. Specializing in European-inspired designs, Arborite
offers over 250 innovative patterns and woodgrain looks in a wide range of
finishes.  We provide interior designers and architects with surfacing solutions
for both commercial and residential projects.  Our laminates are designed in
Montréal, manufactured in the US and readily available through our North
American distribution network.

See discontinued designs (PDF) ›

Company | Where to Buy | Contact Us

Arborite is a business unit of Wilsonart Engineered
Surfaces. www.wilsonartengineeredsurfaces.com

Copyright © Arborite. All Rights Reserved |Privacy Policy|Terms of Use







Close
Checkout as a new customer

Creating an account has many benefits:

 * See order and shipping status
 * Track order history
 * Check out faster

Create an Account
Checkout using your account

Email Address

Password

Sign In
Forgot Your Password?