Skouter mortgage estimates. Web application with view written in PHP and Vue, but controller and models in Go.
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

README.md 1.5 KiB

1234567891011121314151617181920212223242526272829303132333435363738394041
  1. # Grav Form Plugin
  2. The **form plugin** for [Grav](https://github.com/getgrav/grav) adds the ability to create and use forms. This is currently used extensively by the **admin** and **login** plugins.
  3. # Installation
  4. The form plugin is easy to install with GPM.
  5. ```
  6. $ bin/gpm install form
  7. ```
  8. # Configuration
  9. Simply copy the `user/plugins/form/form.yaml` into `user/config/plugins/form.yaml` and make your modifications.
  10. ```
  11. enabled: true
  12. ```
  13. # How to use the Form Plugin
  14. The Learn site has two pages describing how to use the Form Plugin:
  15. - [Forms](https://learn.getgrav.org/forms)
  16. - [Add a contact form](https://learn.getgrav.org/forms/forms/example-form)
  17. # Using email
  18. Note: when using email functionality in your forms, make sure you have configured the Email plugin correctly. In particular, make sure you configured the "Email from" and "Email to" email addresses in the Email plugin with your email address.
  19. # NOTES:
  20. As of version **Form 6.0.0** forms are no longer initialized before caching, but when the form is requested. This has been done to make dynamic forms to work better with caching. There may be some backward compatibility issues for logic that modifies pages with forms as the modification doesn't happen without accessing the form first.
  21. As of version **Form 5.0.0** Grav 1.7+ is required.
  22. As of version **Form 4.0.6**, form labels are now being output with the `|raw` filter. If you wish to show HTML in your form label, ie `Root Folder <root>`, then you need to escape that in your form definition:
  23. ```yaml
  24. label: Root Folder &lt;root&gt;
  25. ```