diff --git a/README.md b/README.md index 0a44bb31..3183ebcd 100644 --- a/README.md +++ b/README.md @@ -320,11 +320,11 @@ will render this HTML: ```html
-
+
-
+
@@ -356,6 +356,7 @@ echo $this->Form->create($article, [ ]); echo $this->Form->control('title'); echo $this->Form->control('published', ['type' => 'checkbox']); +echo $this->Form->submit(); echo $this->Form->end(); ``` @@ -364,13 +365,13 @@ It will render this HTML: ```html -
+
-
+
@@ -380,6 +381,7 @@ It will render this HTML:
+ ``` @@ -404,21 +406,22 @@ echo $this->Form->create($article, [ ]); echo $this->Form->control('title'); echo $this->Form->control('published', ['type' => 'checkbox']); +echo $this->Form->button('Submit'); echo $this->Form->end(); ``` It will render this HTML: ```html -
+ -
+
-
+
@@ -428,6 +431,7 @@ It will render this HTML:
+ ``` @@ -450,24 +454,32 @@ echo $this->Form->create($article, [ ]); echo $this->Form->control('title', ['placeholder' => 'Title']); echo $this->Form->control('published', ['type' => 'checkbox']); +echo $this->Html->div('col-auto', $this->Form->button('Submit')); echo $this->Form->end(); ``` will render this HTML: ```html -
+ -
- - +
+
+ + +
-
- - - +
+
+ + + +
+
+ +
``` @@ -530,7 +542,7 @@ echo $this->Form->control('title', [ This would generate the following HTML: ```html -
+
@@ -549,7 +561,7 @@ echo $this->Form->control('email', [ This would generate the following HTML: ```html -