Skip to content

Latest commit

 

History

History
15 lines (12 loc) · 792 Bytes

registration_form.rst

File metadata and controls

15 lines (12 loc) · 792 Bytes

How to Implement a Registration Form

This article has been removed because it only explained things that are already explained in other articles. Specifically, to implement a registration form you must:

  1. :ref:`Define a class to represent users <create-user-class>`;
  2. :doc:`Create a form </forms>` to ask for the registration information (you can generate this with the make:registration-form command provided by the MakerBundle);
  3. Create :doc:`a controller </controller>` to :ref:`process the form <processing-forms>`;
  4. :ref:`Protect some parts of your application <security-access-control>` so that only registered users can access to them.