Skip to content

Latest commit

 

History

History
20 lines (16 loc) · 932 Bytes

registration_form.rst

File metadata and controls

20 lines (16 loc) · 932 Bytes
.. index::
   single: Doctrine; Simple Registration Form
   single: Form; Simple Registration Form
   single: Security; Simple Registration Form

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-authorization>` so only registered users can access to them.