#1
Hello,

I had to add
function form_url($name, $value = NULL, $attributes = NULL, $additional_code = NULL)
{
$html = form_input($name, $value, $attributes, $additional_code);
$html = str_replace('type="text"', 'type="url"', $html);
return $html;
}

to the form_helper as I needed to verify the url.

Where do you submit enhancments for trongate?
#2
Hi Frocco,

You could submit a pull request via Github where I hope you have already stared Trongate.
#3
Yes, I have already added a star.
I'm not too good at using github.
#4
That's great, and thank you for staring and contributing Trongate. It will be up to DC to accept your suggestion.

Here is a complete guide on how to create a pull request:
https://docs.github.com/en/pull-requests/collaborating-with-pull-requests/proposing-changes-to-your-work-with-pull-requests/creating-a-pull-request
#5
Thank you DaFa...