1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556 |
- title: Site
- form:
- validation: loose
- fields:
- content:
- type: section
- title: PLUGIN_ADMIN.ACCOUNT
- fields:
- username:
- type: text
- size: large
- label: PLUGIN_ADMIN.USERNAME
- disabled: true
- readonly: true
- email:
- type: email
- size: large
- label: PLUGIN_ADMIN.EMAIL
- validate:
- type: email
- message: PLUGIN_ADMIN.EMAIL_VALIDATION_MESSAGE
- required: true
- password:
- type: password
- size: large
- label: PLUGIN_ADMIN.PASSWORD
- validate:
- required: true
- message: PLUGIN_ADMIN.PASSWORD_VALIDATION_MESSAGE
- pattern: '(?=.*\d)(?=.*[a-z])(?=.*[A-Z]).{8,}'
- fullname:
- type: text
- size: large
- label: PLUGIN_ADMIN.FULL_NAME
- validate:
- required: true
- title:
- type: text
- size: large
- label: PLUGIN_ADMIN.TITLE
- language:
- type: select
- label: PLUGIN_ADMIN.LANGUAGE
- size: medium
- classes: fancy
- '@data-options': '\Grav\Plugin\admin::adminLanguages'
- default: 'en'
- help: PLUGIN_ADMIN.LANGUAGE_HELP
|