All project forms can be found under the following folder:
src/AppBundle/Form/
The folder contains Create and Edit form types for all the entities which are administrated in the admin section of the application.
Beside create and update forms, additional form types can be found here such as:
- Login Type
- Register Type
- Reset Password Type
- Change Password Type
- Filesystem Forms
- Account Type
- Contact Type
- InviteUser Type
path: src/AppBundle/Form/User/LoginType.php
Form used to log a specific user into application.
path: src/AppBundle/Form/User/RegisterType.php
Register type form allows user to register into application.
path: src/AppBundle/Form/User/ResetPasswordType.php
Allows users to reset their password
path: src/AppBundle/Form/User/ChangePasswordType.php
Allows user to change their password.
path: src/AppBundle/Form/FileSystem/
Contains forms related to the projects filesystem functionality and contains the following form types:
CreateType.php
- Form that handles creation of a new FileSystem entityDropboxAdapterType.php
- Used to display specific fields for the dropbox filesystemLocalAdapterType.php
- Used to display specific fields for the local filesystemMediaUploadType.php
- Form used to upload a new media file into the filesystem.
path: src/MainBundle/Form/User/AccountType.php
This form is used to allow users to modify their account personal information.
path: src/MainBundle/Form/User/AccountType.php
Used to send messages to website administrators.
path: src/MainBundle/Form/User/AccountType.php
This form is used to invite an user to a specific team based on user's email.
More information about form fields can be found in Sami Documentation -> Form