dbxapp 4.1.3
CMS, Shop, Workflows und modulare Geschäftsanwendungen
Loading...
Searching...
No Matches
register_en.fd.php
Go to the documentation of this file.
1<?php
2$messages = array();
3$messages['save_success'] = 'Data was saved';
4$messages['save_succeass'] = $messages['save_success'];
5$messages['save_error'] = 'Data could not be saved';
6$messages['page_title'] = 'Registration';
7$messages['bar_title'] = 'Register';
8$messages['bar_subtitle'] = 'Create an account and confirm your email address';
9$messages['form_info'] = 'Register with {domain}.';
10$messages['password_mismatch'] = 'The passwords do not match.';
11$messages['user_exists'] = 'The user name or email address already exists.';
12$messages['register_success'] = 'Registration was saved. Please confirm your email address using the link in the email.';
13$messages['confirm_mail_error'] = 'The user was created, but the confirmation email could not be sent.';
14$messages['register_error'] = 'The user could not be created.';
15$messages['validation_error'] = 'Please check your entries.';
16
17$field = array();
18$field['name'] = 'uname';
19$field['type'] = 'varchar';
20$field['index'] = '';
21$field['length'] = '60';
22$field['default'] = '';
23$field['label'] = 'Login name';
24$field['rules'] = 'parameter|min=4|max=60';
25$field['tooltip'] = '';
26$field['errormsg'] = 'The login name must be at least 4 characters long and must contain only letters, numbers, dot, underscore and hyphen.';
27$field['placeholder'] = '';
28$field['convert'] = '';
29$field['protect'] = '0';
30$field['group'] = '';
31$field['mask'] = '';
32$field['data'] = 'icon=bi-person-badge&field_class=';
33$field['options'] = '';
34$field['tpl'] = 'auth-text-label';
35$field['js'] = '';
36$field['prompt'] = '';
38
39$field = array();
40$field['name'] = 'name';
41$field['type'] = 'varchar';
42$field['index'] = '';
43$field['length'] = '60';
44$field['default'] = '';
45$field['label'] = 'Name';
46$field['rules'] = 'words|max=60';
47$field['tooltip'] = '';
48$field['errormsg'] = 'The name may contain letters, numbers, spaces and simple punctuation marks.';
49$field['placeholder'] = '';
50$field['convert'] = '';
51$field['protect'] = '0';
52$field['group'] = '';
53$field['mask'] = '';
54$field['data'] = 'icon=bi-person-vcard&field_class=';
55$field['options'] = '';
56$field['tpl'] = 'auth-text-label';
57$field['js'] = '';
58$field['prompt'] = '';
59$fields[] = $field;
60
61$field = array();
62$field['name'] = 'email';
63$field['type'] = 'varchar';
64$field['index'] = '';
65$field['length'] = '60';
66$field['default'] = '';
67$field['label'] = 'E-mail';
68$field['rules'] = 'email|max=60';
69$field['tooltip'] = '';
70$field['errormsg'] = 'Please enter a valid email address.';
71$field['placeholder'] = '';
72$field['convert'] = '';
73$field['protect'] = '0';
74$field['group'] = '';
75$field['mask'] = '';
76$field['data'] = 'icon=bi-envelope&field_class=dbx-auth-field-wide';
77$field['options'] = '';
78$field['tpl'] = 'auth-text-label';
79$field['js'] = '';
80$field['prompt'] = '';
81$fields[] = $field;
82
83$field = array();
84$field['name'] = 'password';
85$field['type'] = 'varchar';
86$field['index'] = '';
87$field['length'] = '128';
88$field['default'] = '';
89$field['label'] = 'Password';
90$field['rules'] = 'varchar|min=6|max=128';
91$field['tooltip'] = '';
92$field['errormsg'] = 'The password must be at least 6 characters long.';
93$field['placeholder'] = '';
94$field['convert'] = '';
95$field['protect'] = '0';
96$field['group'] = '';
97$field['mask'] = '';
98$field['data'] = 'icon=bi-key&field_class=';
99$field['options'] = '';
100$field['tpl'] = 'auth-password-label';
101$field['js'] = '';
102$field['prompt'] = '';
103$fields[] = $field;
104
105$field = array();
106$field['name'] = 'password2';
107$field['type'] = 'varchar';
108$field['index'] = '';
109$field['length'] = '128';
110$field['default'] = '';
111$field['label'] = 'Repeat the password';
112$field['rules'] = 'varchar|min=6|max=128';
113$field['tooltip'] = '';
114$field['errormsg'] = 'Please repeat the password.';
115$field['placeholder'] = '';
116$field['convert'] = '';
117$field['protect'] = '0';
118$field['group'] = '';
119$field['mask'] = '';
120$field['data'] = 'icon=bi-key-fill&field_class=';
121$field['options'] = '';
122$field['tpl'] = 'auth-password-label';
123$field['js'] = '';
124$field['prompt'] = '';
125$fields[] = $field;
126
127$field = array();
128$field['name'] = 'language';
129$field['type'] = 'varchar';
130$field['index'] = '';
131$field['length'] = '3';
132$field['default'] = 'de';
133$field['label'] = 'Language';
134$field['rules'] = 'parameter|min=2|max=3';
135$field['tooltip'] = '';
136$field['errormsg'] = 'Please select a language.';
137$field['placeholder'] = '';
138$field['convert'] = '';
139$field['protect'] = '0';
140$field['group'] = '';
141$field['mask'] = '';
142$field['data'] = 'icon=bi-translate&field_class=dbx-auth-field-wide';
143$field['options'] = 'de=German&en=English&es=Spanish';
144$field['tpl'] = 'auth-select-single-label';
145$field['js'] = '';
146$field['prompt'] = '';
147$fields[] = $field;
$messages
Definition config.fd.php:2