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. Define a class to represent users;
    ユーザーを表すクラスを定義します。
  2. Create a form to ask for the registration information (you can generate this with the make:registration-form command provided by the MakerBundle);
    登録情報を求めるフォームを作成します (これは、MakerBundle が提供する make:registration-form コマンドで生成できます)。
  3. Create a controller to process the form;
    フォームを処理するコントローラーを作成します。
  4. Protect some parts of your application so that only registered users can access to them.
    アプリケーションの一部を保護して、登録ユーザーのみがアクセスできるようにします。