## The elements for the custom Web pages Representative HTML elements for making the custom Web page are provided as AutoConnectElements. - [AutoConnectButton](#autoconnectbutton): Labeled action button - [AutoConnectCheckbox](#autoconnectcheckbox): Labeled checkbox - [AutoConnectElement](#autoconnectelement-a-basic-class-of-elements): General tag - [AutoConnectFile](#autoconnectfile): File uploader - [AutoConnectInput](#autoconnectinput): Labeled text input box - [AutoConnectRadio](#autoconnectradio): Labeled radio button - [AutoConnectSelect](#autoconnectselect): Selection list - [AutoConnectSubmit](#autoconnectsubmit): Submit button - [AutoConnectText](#autoconnecttext): Style attributed text ## Layout on a custom Web page The elements of the page created by AutoConnectElements are aligned vertically exclude the [AutoConnectRadio](#autoconnectradio). You can specify the direction to arrange the radio buttons as AutoConnectRadio vertically or horizontally. This basic layout depends on the CSS of the AutoConnect menu so you can not change drastically. ## Form and AutoConnectElements All AutoConnectElements placed on custom web pages will be contained into one form. Its form is fixed and created by AutoConnect. The form value (usually the text or checkbox you entered) is sent by [AutoConnectSubmit](#autoconnectsubmit) using the **POST** method with HTTP. The post method sends the actual form data which is a query string whose contents are the **name** and **value** of AutoConnectElements. You can retrieve the value for the parameter with the sketch from the query string with [ESP8266WebServer::arg](https://github.com/esp8266/Arduino/tree/master/libraries/ESP8266WebServer#getting-information-about-request-arguments) function or [PageArgument](https://github.com/Hieromon/PageBuilder#arguments-of-invoked-user-function) class of the [AutoConnect::on](api.md#on) handler when the form is submitted. ## AutoConnectElement - A basic class of elements AutoConnectElement is a base class for other element classes and has common attributes for all elements. It can also be used as a [variant](#variant-for-autoconnectelements) of each element. The following items are attributes that AutoConnectElement has and are common to other elements. **Sample**
**`AutoConnectElement element("element", "
");`**
On the page:
### Constructor ```cpp AutoConnectElement(const char* name, const char* value) ``` ### name Each element has a name. The **name** is the String data type. You can identify each element by the name to access it with sketches. ### value The **value** is the string which is a source to generate an HTML code. Characteristics of Value vary depending on the element. The value of AutoConnectElement is native HTML code. A string of value is output as HTML as it is. ### type The **type** indicates the type of the element and represented as the *ACElement_t* enumeration type in the sketch. Since AutoConnectElement also acts as a variant of other elements, it can be applied to handle elements collectively. At that time, the type can be referred to by the [**typeOf()**](apielements.md#typeof) function. The following example changes the font color of all [AutoConnectText](#autoconnecttext) elements of a custom Web page to gray. ```cpp hl_lines="5" AutoConnectAux customPage; AutoConnectElementVT& elements = customPage.getElements(); for (AutoConnectElement& elm : elements) { if (elm.typeOf() == AC_Text) { AutoConnectText& text = reinterpret_cast(elm); text.style = "color:gray;"; } } ``` The enumerators for *ACElement_t* are as follows: - AutoConnectButton: **AC_Button** - AutoConnectCheckbox: **AC_Checkbox** - AutoConnectElement: **AC_Element** - AutoConnectFile: **AC_File** - AutoConnectInput: **AC_Input** - AutoConnectRadio: **AC_Radio** - AutoConnectSelect: **AC_Select** - AutoConnectSubmit: **AC_Submit** - AutoConnectText: **AC_Text** - Uninitialized element: **AC_Unknown** Furthermore, to convert an entity that is not an AutoConnectElement to its native type, you must [re-interpret](https://en.cppreference.com/w/cpp/language/reinterpret_cast) that type with c++. Or, you can be coding the sketch more easily with using the [**as**](apielements.md#ast62) function. ```cpp hl_lines="6" AutoConnectAux customPage; AutoConnectElementVT& elements = customPage.getElements(); for (AutoConnectElement& elm : elements) { if (elm.type() == AC_Text) { AutoConnectText& text = customPage[elm.name].as(); text.style = "color:gray;"; // Or, it is also possible to write the code further reduced as follows. // customPage[elm.name].as().style = "color:gray;"; } } ``` ## AutoConnectButton AutoConnectButton generates an HTML `#!html