I want to accept a URL in my input field. But i don't care about https:// or https://. I just want to remove this validation. But it should only accept a URL.
Example like this www.example.com or example.com should be acceptable.
<form action="" method="POST" class="form-box d-flex justify-content-between" enctype="multipart/form-data">
<input type="url" class="form-control" name="url">
<button type="submit" class="btn search-btn">Find</button>
</form>
patternattribute, and match.. That should be all required for a web address. And no special chars. See: w3schools.com/tags/att_input_pattern.asp