{"id":40,"date":"2022-05-04T15:59:49","date_gmt":"2022-05-04T15:59:49","guid":{"rendered":"https:\/\/www.summitself-storage.com\/accessibility\/"},"modified":"2022-05-04T16:35:48","modified_gmt":"2022-05-04T16:35:48","slug":"accessibility","status":"publish","type":"page","link":"https:\/\/network8.us23.cdn-alpha.com\/summit-storage\/accessibility\/","title":{"rendered":"Accessibility"},"content":{"rendered":"<h1>Our Commitment to Accessibility<\/h1>\r\n<h2>Commitment to Website Accessibility<\/h2>\r\nWe are committed to providing an exceptional website experience for all our users. Our Website Accessibility Team is committed to maintaining our online  products and services so they are accessible to the widest audience, regardless of ability.\r\n<h2>Ongoing Online Effort<\/h2>\r\nPlease be aware that our online efforts are ongoing. We are actively working to increase the usability of our online products and services. We value your input and partner with relevant organizations, conducting research to ensure we maintain as rich an online experience for everyone.\r\n<h2>Further Information Regarding Our Website<\/h2>\r\nIf you have a question, comment, or problem accessing our website content, please complete the form below:    <style>\r\n        #accessibilityForm { display:block; max-width:1400px; margin:20px auto; }\r\n        #accessibilityForm input, #accessibilityForm textarea { width:100%; }\r\n        #accessibilityForm button[type=submit] { background:#000; color:#fff; height:unset; transition:.2s; position:relative; }\r\n        #accessibilityForm button[type=submit]:hover { transform:scale(1.08); }\r\n        #accessibilityForm button[disabled] { background:#666; cursor:not-allowed; }\r\n        .loading-spinner { display:none; width:20px; height:20px; border:3px solid #fff; border-top:3px solid #0fea0f; border-radius:50%; animation:spin 1s linear infinite; position:absolute; left:50%; top:50%; transform:translate(-50%,-50%); }\r\n        @keyframes spin { 0% {transform:translate(-50%,-50%) rotate(0)} 100% {transform:translate(-50%,-50%) rotate(360deg)} }\r\n        .response-success { border:2px solid #0fea0f; font-weight:bold; margin-bottom:20px; text-align:center; padding:5px; }\r\n        .response-error { border:2px solid #ff0101; font-weight:bold; margin-bottom:20px; text-align:center; padding:5px; }\r\n    <\/style>\r\n\r\n    <form id=\"accessibilityForm\" data-rest-url=\"https:\/\/network8.us23.cdn-alpha.com\/summit-storage\/wp-json\/tsg\/v1\/accessibility\" data-wpnonce=\"b8c0746454\">\r\n        <div class=\"row\">\r\n            <div class=\"six columns\"><label>Name:<\/label><input type=\"text\" id=\"name\" required><\/div>\r\n            <div class=\"six columns\"><label>Email:<\/label><input type=\"email\" id=\"email\" required><\/div>\r\n        <\/div>\r\n        <div class=\"row\">\r\n            <div class=\"six columns\"><label>Phone:<\/label><input type=\"tel\" id=\"phone\" required><\/div>\r\n            <div class=\"six columns\"><label>Facility Name:<\/label><input type=\"text\" id=\"facility_name\" required><\/div>\r\n        <\/div>\r\n        <div class=\"row\">\r\n            <div class=\"six columns\"><label>Location (City, State):<\/label><input type=\"text\" id=\"location\" required><\/div>\r\n            <div class=\"six columns\"><label>Unit Number:<\/label><input type=\"text\" id=\"unit_number\" required><\/div>\r\n        <\/div>\r\n        <div class=\"row\">\r\n            <div class=\"twelve columns\"><label>Additional Information:<\/label><textarea id=\"message\" required><\/textarea><\/div>\r\n        <\/div>\r\n        <button type=\"submit\">\r\n            Submit\r\n            <div class=\"loading-spinner\" id=\"loadingSpinner\"><\/div>\r\n        <\/button>\r\n    <\/form>\r\n    <div id=\"accessibilityFormResponse\"><\/div>\r\n\r\n    <!-- Enterprise loader (site key renders here) -->\r\n    <script src=\"https:\/\/www.google.com\/recaptcha\/enterprise.js?render=6Lc7LQIsAAAAAPJ34ieldUXCYg303AtwKzgiIy3k\" defer><\/script>\r\n\r\n    <script>\r\n    (function(){\r\n        const form = document.getElementById('accessibilityForm');\r\n        if (!form) return;\r\n\r\n        form.addEventListener('submit', async function(e){\r\n            e.preventDefault();\r\n\r\n            const submitButton = this.querySelector('button[type=submit]');\r\n            const spinner      = document.getElementById('loadingSpinner');\r\n            const responseEl   = document.getElementById('accessibilityFormResponse');\r\n            const restUrl      = this.getAttribute('data-rest-url');\r\n            const wpnonce      = this.getAttribute('data-wpnonce');\r\n\r\n            \/\/ disable + spinner\r\n            submitButton.disabled = true;\r\n            spinner.style.display = 'inline-block';\r\n            responseEl.textContent = '';\r\n            responseEl.className = '';\r\n\r\n            \/\/ Gather fields\r\n            const payload = {\r\n                name:          document.getElementById('name').value,\r\n                email:         document.getElementById('email').value,\r\n                phone:         document.getElementById('phone').value,\r\n                facility_name: document.getElementById('facility_name').value,\r\n                location:      document.getElementById('location').value,\r\n                unit_number:   document.getElementById('unit_number').value,\r\n                message:       document.getElementById('message').value,\r\n                website:       window.location.hostname,\r\n                app_id:        \"1\"\r\n            };\r\n\r\n            try {\r\n                \/\/ Wait for reCAPTCHA Enterprise to be ready\r\n                await new Promise(resolve=>{\r\n                    if (window.grecaptcha?.enterprise?.ready) return resolve();\r\n                    const t = setInterval(()=>{\r\n                        if (window.grecaptcha?.enterprise?.ready){ clearInterval(t); resolve(); }\r\n                    },50);\r\n                });\r\n\r\n                \/\/ Get token (action = 'submit')\r\n                const token = await grecaptcha.enterprise.execute('6Lc7LQIsAAAAAPJ34ieldUXCYg303AtwKzgiIy3k', { action: 'submit' });\r\n\r\n                \/\/ Send to WP REST endpoint (which verifies token, checks hostname, then forwards to Candee)\r\n                const res = await fetch(restUrl, {\r\n                    method: 'POST',\r\n                    headers: { 'Content-Type': 'application\/json', 'X-WP-Nonce': wpnonce },\r\n                    body: JSON.stringify({ form: payload, token, action: 'submit' })\r\n                });\r\n\r\n                const result = await res.json();\r\n\r\n                if (res.ok && result && result.success) {\r\n                    responseEl.textContent = result.message || 'Submitted successfully!';\r\n                    responseEl.classList.add('response-success');\r\n                    form.reset();\r\n                } else {\r\n                    responseEl.textContent = (result && result.message) ? result.message : 'An error occurred. Please try again.';\r\n                    responseEl.classList.add('response-error');\r\n                    submitButton.disabled = false;\r\n                }\r\n            } catch (err) {\r\n                responseEl.textContent = 'An error occurred. Please try again.';\r\n                responseEl.classList.add('response-error');\r\n                submitButton.disabled = false;\r\n            } finally {\r\n                spinner.style.display = 'none';\r\n            }\r\n        });\r\n    })();\r\n    <\/script>\r\n    <h2>ADA Accessibility Disclaimer<\/h2>\r\n<p>As recently as January 2021, the World Health Organization estimated that there are more than one billion people living with disabilities, with over 100 million persons having significant difficulties in functioning (for more information, see www.who.int\/disabilities\/en).<\/p>\r\n<p>Many of these disabilities can affect access to information technologies. Additionally, the same individuals who run into barriers that impede access to information technologies could benefit most from using them.<\/p>\r\n<p>Given the importance of the internet, accessibility to the web is of critical importance to people with disabilities around the world, including people with auditory, cognitive, physical, neurological, and visual disabilities. It is likewise important to those with accessibility needs due to aging.<\/p>\r\n<p>2Guys Business Ventures, Inc. DBA, The Storage Group (\u201cTSG\u201d) is frequently asked whether websites we develop are \u201cADA Compliant\u201d (meaning, compliant with the Americans with Disabilities Act). There is not an easy answer, as every customer\u2019s application and use is different. So while we cannot state generally \u201cyes,\u201d we want to assure all of our customers that we take the ADA very seriously and are striving towards the day that we can say, uniformly, \u201cyes.\u201d<\/p>\r\n<p>At this time, there is guidance regarding website access for those with disabilities but are no rules in place which carry the force of law that explain how websites must comply with the ADA. (Note that Federal agencies, however, do have to make sure that all their website content is accessible to people with disabilities. So anyone receiving federal money, either through grants or contract work, should comply with the guidelines applicable to Federal agencies. If this is you, then please let us know and we will gladly work with you to ensure compliance.)<\/p>\r\n<p>Providing accessible websites can also benefit people who do not have disabilities but who are experiencing situational barriers. For example, when accessing the internet from devices with small screens or in low bandwidth situations, or when experiencing barriers due to language or literacy levels, accessibility solutions can also support improved access.<\/p>\r\n<p>TSG is committed to ensuring equal access for people with disabilities. As potential customers and employees of TSG, they are important contributors to the TSG 's business success and should not be excluded, but rather welcomed into the TSG family.<\/p>\r\n<p>TSG will endeavor to maximize the access of people with disabilities to its website and websites developed by the Company. TSG\u2019s intent is that websites produced by it are ADA compliant. However, TSG makes no warranties or guarantees regarding ADA compliance.<\/p>\r\n<p>TSG\u2019s goal is to provide accessibility to people with certain disabilities. However, one size does not fit all, especially in web development. While the parent website template is certified, any small change or deviation from that model that we make to meet the client\u2019s expectations and goals from the website may require changes or modifications that may result in the end product not meeting desired standards. For that reason, we cannot guarantee every site based on that parent theme meets those same standards.\r\n<\/p><p>To that end, we ask you to let us know if there are any specific issues or requirements you may need us to look into or ensure that your website meets. Specifically, if you serve or receive money from the federal government, you may have additional responsibilities imposed upon you that raise the level of your individual ADA compliance expectations. Because the ADA is so extensive and wide sweeping, it is impossible for us to be able to economically address everything for all customers. We are however delighted and willing to work with customers on an individual basis to meet your specific needs and can even certify website compliance to particular desired standards for an additional charge. Thank you for appreciating in advance that this may ultimately increase our development costs to you.<\/p>\r\n\n","protected":false},"excerpt":{"rendered":"","protected":false},"author":1,"featured_media":0,"parent":0,"menu_order":0,"comment_status":"closed","ping_status":"closed","template":"templates\/full-width.php","meta":{"_acf_changed":false,"footnotes":""},"class_list":["post-40","page","type-page","status-publish","hentry"],"acf":[],"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v26.9 - https:\/\/yoast.com\/product\/yoast-seo-wordpress\/ -->\n<title>Accessibility - Summit Self Storage<\/title>\n<meta name=\"robots\" content=\"index, follow, max-snippet:-1, max-image-preview:large, max-video-preview:-1\" \/>\n<link rel=\"canonical\" href=\"https:\/\/network8.us23.cdn-alpha.com\/summit-storage\/accessibility\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"Accessibility - Summit Self Storage\" \/>\n<meta property=\"og:url\" content=\"https:\/\/network8.us23.cdn-alpha.com\/summit-storage\/accessibility\/\" \/>\n<meta property=\"og:site_name\" content=\"Summit Self Storage\" \/>\n<meta property=\"article:modified_time\" content=\"2022-05-04T16:35:48+00:00\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\/\/schema.org\",\"@graph\":[{\"@type\":\"WebPage\",\"@id\":\"https:\/\/network8.us23.cdn-alpha.com\/summit-storage\/accessibility\/\",\"url\":\"https:\/\/network8.us23.cdn-alpha.com\/summit-storage\/accessibility\/\",\"name\":\"Accessibility - Summit Self Storage\",\"isPartOf\":{\"@id\":\"https:\/\/network8.us23.cdn-alpha.com\/summit-storage\/#website\"},\"datePublished\":\"2022-05-04T15:59:49+00:00\",\"dateModified\":\"2022-05-04T16:35:48+00:00\",\"breadcrumb\":{\"@id\":\"https:\/\/network8.us23.cdn-alpha.com\/summit-storage\/accessibility\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\/\/network8.us23.cdn-alpha.com\/summit-storage\/accessibility\/\"]}]},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\/\/network8.us23.cdn-alpha.com\/summit-storage\/accessibility\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\/\/network8.us23.cdn-alpha.com\/summit-storage\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"Accessibility\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\/\/network8.us23.cdn-alpha.com\/summit-storage\/#website\",\"url\":\"https:\/\/network8.us23.cdn-alpha.com\/summit-storage\/\",\"name\":\"Summit Self Storage\",\"description\":\"\",\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\/\/network8.us23.cdn-alpha.com\/summit-storage\/?s={search_term_string}\"},\"query-input\":{\"@type\":\"PropertyValueSpecification\",\"valueRequired\":true,\"valueName\":\"search_term_string\"}}],\"inLanguage\":\"en-US\"}]}<\/script>\n<!-- \/ Yoast SEO plugin. -->","yoast_head_json":{"title":"Accessibility - Summit Self Storage","robots":{"index":"index","follow":"follow","max-snippet":"max-snippet:-1","max-image-preview":"max-image-preview:large","max-video-preview":"max-video-preview:-1"},"canonical":"https:\/\/network8.us23.cdn-alpha.com\/summit-storage\/accessibility\/","og_locale":"en_US","og_type":"article","og_title":"Accessibility - Summit Self Storage","og_url":"https:\/\/network8.us23.cdn-alpha.com\/summit-storage\/accessibility\/","og_site_name":"Summit Self Storage","article_modified_time":"2022-05-04T16:35:48+00:00","twitter_card":"summary_large_image","schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"WebPage","@id":"https:\/\/network8.us23.cdn-alpha.com\/summit-storage\/accessibility\/","url":"https:\/\/network8.us23.cdn-alpha.com\/summit-storage\/accessibility\/","name":"Accessibility - Summit Self Storage","isPartOf":{"@id":"https:\/\/network8.us23.cdn-alpha.com\/summit-storage\/#website"},"datePublished":"2022-05-04T15:59:49+00:00","dateModified":"2022-05-04T16:35:48+00:00","breadcrumb":{"@id":"https:\/\/network8.us23.cdn-alpha.com\/summit-storage\/accessibility\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/network8.us23.cdn-alpha.com\/summit-storage\/accessibility\/"]}]},{"@type":"BreadcrumbList","@id":"https:\/\/network8.us23.cdn-alpha.com\/summit-storage\/accessibility\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/network8.us23.cdn-alpha.com\/summit-storage\/"},{"@type":"ListItem","position":2,"name":"Accessibility"}]},{"@type":"WebSite","@id":"https:\/\/network8.us23.cdn-alpha.com\/summit-storage\/#website","url":"https:\/\/network8.us23.cdn-alpha.com\/summit-storage\/","name":"Summit Self Storage","description":"","potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/network8.us23.cdn-alpha.com\/summit-storage\/?s={search_term_string}"},"query-input":{"@type":"PropertyValueSpecification","valueRequired":true,"valueName":"search_term_string"}}],"inLanguage":"en-US"}]}},"_links":{"self":[{"href":"https:\/\/network8.us23.cdn-alpha.com\/summit-storage\/wp-json\/wp\/v2\/pages\/40","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/network8.us23.cdn-alpha.com\/summit-storage\/wp-json\/wp\/v2\/pages"}],"about":[{"href":"https:\/\/network8.us23.cdn-alpha.com\/summit-storage\/wp-json\/wp\/v2\/types\/page"}],"author":[{"embeddable":true,"href":"https:\/\/network8.us23.cdn-alpha.com\/summit-storage\/wp-json\/wp\/v2\/users\/1"}],"replies":[{"embeddable":true,"href":"https:\/\/network8.us23.cdn-alpha.com\/summit-storage\/wp-json\/wp\/v2\/comments?post=40"}],"version-history":[{"count":1,"href":"https:\/\/network8.us23.cdn-alpha.com\/summit-storage\/wp-json\/wp\/v2\/pages\/40\/revisions"}],"predecessor-version":[{"id":116,"href":"https:\/\/network8.us23.cdn-alpha.com\/summit-storage\/wp-json\/wp\/v2\/pages\/40\/revisions\/116"}],"wp:attachment":[{"href":"https:\/\/network8.us23.cdn-alpha.com\/summit-storage\/wp-json\/wp\/v2\/media?parent=40"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}