Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/nette/forms
π Generating, validating and processing secure forms in PHP. Handy API, fully customizable, server & client side validation and mature design.
https://github.com/nette/forms
forms html javascript nette nette-framework php safety security validation
Last synced: 4 days ago
JSON representation
π Generating, validating and processing secure forms in PHP. Handy API, fully customizable, server & client side validation and mature design.
- Host: GitHub
- URL: https://github.com/nette/forms
- Owner: nette
- License: other
- Created: 2013-11-28T23:35:47.000Z (about 11 years ago)
- Default Branch: master
- Last Pushed: 2024-12-27T07:58:39.000Z (about 1 month ago)
- Last Synced: 2025-01-14T19:26:56.807Z (18 days ago)
- Topics: forms, html, javascript, nette, nette-framework, php, safety, security, validation
- Language: PHP
- Homepage: https://doc.nette.org/forms
- Size: 2.46 MB
- Stars: 499
- Watchers: 52
- Forks: 148
- Open Issues: 33
-
Metadata Files:
- Readme: readme.md
- License: license.md
Awesome Lists containing this project
README
Nette Forms: greatly facilitates web forms
==========================================[![Downloads this Month](https://img.shields.io/packagist/dm/nette/forms.svg)](https://packagist.org/packages/nette/forms)
[![Tests](https://github.com/nette/forms/actions/workflows/tests.yml/badge.svg?branch=master)](https://github.com/nette/forms/actions)
[![Coverage Status](https://coveralls.io/repos/github/nette/forms/badge.svg?branch=master)](https://coveralls.io/github/nette/forms?branch=master)
[![Latest Stable Version](https://poser.pugx.org/nette/forms/v/stable)](https://github.com/nette/forms/releases)
[![License](https://img.shields.io/badge/license-New%20BSD-blue.svg)](https://github.com/nette/forms/blob/master/license.md)Introduction
------------Nette\Forms greatly facilitates creating and processing web forms. What it can really do?
- validate sent data both client-side (JavaScript) and server-side
- provide high level of security
- multiple render modes
- translations, i18nWhy should you bother setting up framework for a simple web form? You won't have to take care about routine tasks such as writing two validation scripts (client and server) and your code will be safe against security breaches.
Nette Framework puts a great effort to be safe and since forms are the most common user input, Nette forms are as good as impenetrable. All is maintained dynamically and transparently, nothing has to be set manually. Well known vulnerabilities such as Cross Site Scripting (XSS) and Cross-Site Request Forgery (CSRF) are filtered, as well as special control characters. All inputs are checked for UTF-8 validity. Every multiple-choice, select box and similar are checked for forged values upon validating. Sounds good? Let's try it out.
Documentation can be found on the [website](https://doc.nette.org/forms).
[Support Me](https://github.com/sponsors/dg)
--------------------------------------------Do you like Nette Forms? Are you looking forward to the new features?
[![Buy me a coffee](https://files.nette.org/icons/donation-3.svg)](https://github.com/sponsors/dg)
Thank you!
Installation
------------The recommended way to install is via Composer:
```
composer require nette/forms
```It requires PHP version 8.1 and supports PHP up to 8.4.
Client-side support can be installed with npm or yarn:
```
npm install nette-forms
```Usage
-----Let's create a simple registration form:
```php
use Nette\Forms\Form;$form = new Form;
$form->addText('name', 'Name:');
$form->addPassword('password', 'Password:');
$form->addSubmit('send', 'Register');echo $form; // renders the form
```
Though we mentioned validation, yet our form has none. Let's fix it. We require users to tell us their name, so we should call a `setRequired()` method, which optional argument is an error message to show, if user does not fill his name in:```php
$form->addText('name', 'Name:')
->setRequired('Please fill your name.');
```Try submitting a form without the name - you will keep seeing this message until you meet the validation rules. All that is left for us is setting up JavaScript rules. Luckily it's a piece of cake. We only have to link `netteForms.js`, which is located at `/client-side/forms` in the distribution package.
```html
```
Nette Framework adds `required` class to all mandatory elements. Adding the following style will turn label of *name* input to red.
```html
.required label { color: maroon }
```
[Continueβ¦](https://doc.nette.org/en/forms).