18.0.1
i bought it this week
Search found 7 matches
- Fri Nov 17, 2023 3:10 pm
- Forum: Login Tools Questions
- Topic: Login Tools - Add New User?
- Replies: 16
- Views: 12038
- Fri Nov 17, 2023 10:04 am
- Forum: Login Tools Questions
- Topic: Login Tools - Add New User?
- Replies: 16
- Views: 12038
Re: Login Tools - Add New User?
demo would be easy to set up. If you place the sign-up form on a site, change the validation pattern and the publish. Try to put in a name in fullname field with ü, ö or ä (which were included in the pattern earlier), then you see it trows an error.
- Thu Nov 16, 2023 11:42 am
- Forum: Login Tools Questions
- Topic: Login Tools - Add New User?
- Replies: 16
- Views: 12038
Re: Login Tools - Add New User?
sure. I only now tryed out. I changed the validation pattern in wwb and then opened the created php file. There the validation pattern for the fullname field is unchanged.
- Thu Nov 16, 2023 8:25 am
- Forum: Responsive Web Design
- Topic: Nothing working right ,ready to give up!
- Replies: 2
- Views: 5297
Re: Nothing working right ,ready to give up!
I would use layout grid instead of a header and set the gridsystem to flexbox.
- Thu Nov 16, 2023 8:21 am
- Forum: Login Tools Questions
- Topic: Login Tools - Add New User?
- Replies: 16
- Views: 12038
Re: Login Tools - Add New User?
yes but the field validation pattern in the sign up form tool changes only the pattern for the user name. The pattern for the fullname field stays unchanged in the generated php:
if (!preg_match("/^[A-Za-z0-9-_!@$.' &]{1,50}$/", $newfullname))
{
$error_message = 'Fullname is not valid, please ...
if (!preg_match("/^[A-Za-z0-9-_!@$.' &]{1,50}$/", $newfullname))
{
$error_message = 'Fullname is not valid, please ...
- Tue Nov 14, 2023 9:56 am
- Forum: Login Tools Questions
- Topic: Login Tools - Add New User?
- Replies: 16
- Views: 12038
Re: Login Tools - Add New User?
Hi all,
when setting up the sign up form there is indeed a validation pattern. But that is only for the email and username if i understood correctly.
Anyhow. To allow ü, ö, ä in Names, which is quite common in some countries, the pattern in the php file,
} elseif (!preg_match("/^[A-Za-z0-9 ...
when setting up the sign up form there is indeed a validation pattern. But that is only for the email and username if i understood correctly.
Anyhow. To allow ü, ö, ä in Names, which is quite common in some countries, the pattern in the php file,
} elseif (!preg_match("/^[A-Za-z0-9 ...
- Tue Nov 14, 2023 9:45 am
- Forum: Login Tools Questions
- Topic: Error_Message after Submit Clears Inputs
- Replies: 4
- Views: 7749
Re: Error_Message after Submit Clears Inputs
Hi all,
chatgpt said:
The HTML form fields are being emptied because the form is being submitted to the same page (action="<?php echo basename(__FILE__); ?>"). When the form is submitted, the page reloads, and the PHP code at the beginning of the file is executed. This code initializes variables ...
chatgpt said:
The HTML form fields are being emptied because the form is being submitted to the same page (action="<?php echo basename(__FILE__); ?>"). When the form is submitted, the page reloads, and the PHP code at the beginning of the file is executed. This code initializes variables ...