Skip to content

Commit 69d52c2

Browse files
committed
readme: updated
1 parent 7c65893 commit 69d52c2

File tree

1 file changed

+14
-5
lines changed

1 file changed

+14
-5
lines changed

readme.md

Lines changed: 14 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,10 @@ Nette Forms: greatly facilitates web forms
77
[![Latest Stable Version](https://poser.pugx.org/nette/forms/v/stable)](https://github.com/nette/forms/releases)
88
[![License](https://img.shields.io/badge/license-New%20BSD-blue.svg)](https://github.com/nette/forms/blob/master/license.md)
99

10+
11+
Introduction
12+
------------
13+
1014
Nette\Forms greatly facilitates creating and processing web forms. What it can really do?
1115

1216
- validate sent data both client-side (JavaScript) and server-side
@@ -18,18 +22,23 @@ Why should you bother setting up framework for a simple web form? You won't have
1822

1923
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.
2024

21-
Install it using Composer:
25+
Documentation can be found on the [website](https://doc.nette.org/forms).
26+
27+
28+
Installation
29+
------------
30+
31+
The recommended way to install is via Composer:
2232

2333
```
2434
composer require nette/forms
2535
```
2636

27-
The last stable release requires PHP version 5.6 or newer (is compatible with PHP 7.0 and 7.1). The dev-master version requires PHP 7.1.
37+
It requires PHP version 5.6 and supports PHP up to 7.2. The dev-master version requires PHP 7.1.
2838

29-
[See documentation](https://doc.nette.org/en/forms).
3039

31-
First form
32-
----------
40+
Usage
41+
-----
3342

3443
Let's create a simple registration form:
3544

0 commit comments

Comments
 (0)