Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update 05_Simple_Contact_Form.md #416

Closed
wants to merge 39 commits into from
Closed
Changes from 1 commit
Commits
Show all changes
39 commits
Select commit Hold shift + click to select a range
a1ac1ac
MNT Update branch which builds docs site (#340)
GuySartorelli Aug 31, 2023
cda53f6
Merge branch '5.1' into 5
emteknetnz Sep 5, 2023
1760a43
Merge branch '5.1' into 5
github-actions[bot] Sep 12, 2023
01c5711
Merge branch '5.1' into 5
github-actions[bot] Sep 19, 2023
2177d6a
DOC Document deprecation of old password encryptors (#348)
GuySartorelli Sep 19, 2023
ce29174
DOC add errorpage allowed_error_codes to 5.2.0 changelog
andrewandante Sep 25, 2023
67b2d8c
Merge branch '5.1' into 5
github-actions[bot] Sep 26, 2023
18b2e8d
Merge pull request #352 from andrewandante/DOCS/allowed_error_codes_c…
GuySartorelli Sep 26, 2023
c6525f2
DOC Document ORM changes for CMS 5.2 (#351)
GuySartorelli Oct 2, 2023
2435e70
Merge branch '5.1' into 5
GuySartorelli Oct 5, 2023
a8c656f
Merge branch '5.1' into 5
github-actions[bot] Oct 9, 2023
49d5341
Merge branch '5.1' into 5
github-actions[bot] Oct 16, 2023
1831e78
Merge branch '5.1' into 5
GuySartorelli Oct 16, 2023
4e669f1
DOC Create new users with random passwords
emteknetnz Oct 19, 2023
a66a48e
Merge pull request #374 from creative-commoners/pulls/5/random-password
GuySartorelli Oct 19, 2023
7ebf3cd
Merge branch '5.1' into 5
github-actions[bot] Oct 25, 2023
9a87676
Merge branch '5.1' into 5
github-actions[bot] Oct 25, 2023
27e7ec2
Merge branch '5.1' into 5
github-actions[bot] Oct 31, 2023
c04c2e0
DOC Document new hide_pagetypes config
GuySartorelli Nov 2, 2023
c9f84fa
Merge pull request #393 from creative-commoners/pulls/5/hide-pagetype…
sabina-talipova Nov 5, 2023
3b59d4e
DOC Deprecated $having parameter
emteknetnz Nov 6, 2023
7cf345b
Merge pull request #396 from creative-commoners/pulls/5/deprecate
GuySartorelli Nov 6, 2023
e35eb02
Merge branch '5.1' into 5
github-actions[bot] Nov 7, 2023
6f0861b
DOC Select all and deselect all files
emteknetnz Nov 7, 2023
a25f9a0
Merge pull request #398 from creative-commoners/pulls/5/select-all
GuySartorelli Nov 7, 2023
d989321
DOC Document new dev admin permissions (#399)
GuySartorelli Nov 14, 2023
a140076
Merge branch '5.1' into 5
github-actions[bot] Nov 14, 2023
51cba6c
DOC LogicException when no react component
emteknetnz Nov 22, 2023
55dabe9
Merge pull request #402 from creative-commoners/pulls/5/schema-exception
GuySartorelli Nov 22, 2023
2dcd339
DOC Update coding conventions
emteknetnz Nov 26, 2023
a80f184
Merge pull request #397 from creative-commoners/pulls/5/code-standards
GuySartorelli Nov 26, 2023
2c2de29
Merge branch '5.1' into 5
github-actions[bot] Nov 28, 2023
1a514d1
DOC Document new staticpublishqueue configuration (#413)
GuySartorelli Nov 29, 2023
5f985eb
Merge branch '5.1' into 5
GuySartorelli Nov 30, 2023
9063e30
Update 05_Simple_Contact_Form.md
erangaddd Dec 5, 2023
f44b8fa
Merge branch '5.1' into 5
github-actions[bot] Dec 5, 2023
dd3ffe9
Merge branch '5.1' into 5
github-actions[bot] Dec 10, 2023
fd9af10
DOC Document multi-reciprocal has_one relations (#417)
GuySartorelli Dec 11, 2023
77e42ec
Merge branch 'silverstripe:5' into patch-1
erangaddd Dec 12, 2023
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -30,6 +30,7 @@ use SilverStripe\Forms\FieldList;
use SilverStripe\Forms\Form;
use SilverStripe\Forms\FormAction;
use SilverStripe\Forms\TextField;
use SilverStripe\Forms\TextareaField;

class ContactPageController extends PageController
{
Expand All @@ -40,7 +41,7 @@ class ContactPageController extends PageController
$fields = FieldList::create(
TextField::create('Name'),
EmailField::create('Email'),
extareaField::create('Message')
TextareaField::create('Message')
);

$actions = FieldList::create(
Expand Down
Loading