diff --git a/docs/docs/components/input.md b/docs/docs/components/input.md
index 066412575..78f5f9c4a 100644
--- a/docs/docs/components/input.md
+++ b/docs/docs/components/input.md
@@ -5,17 +5,7 @@ layout: component.njk
---
```html {.example}
-
-
-
-
-
+
```
{% raw %}
diff --git a/docs/docs/resources/changelog.md b/docs/docs/resources/changelog.md
index d6d6a244d..da7151d86 100644
--- a/docs/docs/resources/changelog.md
+++ b/docs/docs/resources/changelog.md
@@ -16,6 +16,7 @@ New versions of Web Awesome are released as-needed and generally occur when a cr
- Checkboxes will no longer have a `checked` attribute set when their `checked` property is changed. IE: `el.checked = true`. Instead, use the `:state(:checked)` and for unsupported browsers, use `[data-checked]`
- `data-optional`, `data-required`, `data-invalid`, `data-valid`, `data-user-invalid`, and `data-user-valid` have all been renamed to have a `data-wa-*` prefix. Like so: `data-wa-valid`, `data-wa-invalid`, to avoid any conflicts with user provided attributes.
- `` and `` now use `:state(checked)` and `[data-wa-checked]` for CSS styling their "checked" state. The "checked" attribute now maps to `defaultChecked` just like native HTML checkboxes.
+- `getFormControls()` has been removed. We use Form Associated Custom Elements now and can reliably grab Web Awesome Elements via `formElement.elements`.
- Added `setKitCode()` and `getKitCode()` functions as well as support for setting kit codes declaratively with `data-webawesome-kit`
diff --git a/docs/docs/resources/contributing.md b/docs/docs/resources/contributing.md
index 10e88f28f..ba607cf37 100644
--- a/docs/docs/resources/contributing.md
+++ b/docs/docs/resources/contributing.md
@@ -411,6 +411,9 @@ Form controls should support submission and validation through the following con
- All form controls must have an `invalid` property that reflects their validity
- All form controls should mirror their native validation attributes such as `required`, `pattern`, `minlength`, `maxlength`, etc. when possible and use the `MirrorValidator`.
- All form controls must be tested to work with the standard `