Inheritance: extends Form
 /**
  * Return a form allowing the user to edit their details.
  *
  * @return ShopAccountForm
  */
 public function EditAccountForm()
 {
     return ShopAccountForm::create($this, 'EditAccountForm');
 }
 /**
  * Returns the CreateAccountForm
  * @return ShopAccountForm
  */
 function CreateAccountForm()
 {
     return ShopAccountForm::create($this, "CreateAccountForm");
 }
 /**
  * Return a form allowing the user to edit
  * their details with the shop.
  *
  * @return ShopAccountForm
  */
 function MemberForm()
 {
     return ShopAccountForm::create($this, 'MemberForm');
 }