Hi All,
Has anyone been able to successfully register any of their Hydros products using their provided link on the packaging?coralvue.com/register
I have tried multiple attempts and keep on getting a registration information missing error. Well I went down the rabbit hole and looked at the source code for their registration page and noticed some alarming issues:
Below is the Product Information section, more specifically the Serial Number section that is required to submit the form.
1. The bolded style="display:none;" is hiding the entire section, and then
2. The bolded disabled="disabled" makes the text box inaccessible to user input
My question to y'all is, has anyone been able to register their hydros products through CoralVue? I'd give them the benefit of doubt that this was a simple error, but there's not one but two elements on the page not allowing customers to register for products.
Has anyone been able to successfully register any of their Hydros products using their provided link on the packaging?coralvue.com/register
I have tried multiple attempts and keep on getting a registration information missing error. Well I went down the rabbit hole and looked at the source code for their registration page and noticed some alarming issues:
Below is the Product Information section, more specifically the Serial Number section that is required to submit the form.
1. The bolded style="display:none;" is hiding the entire section, and then
2. The bolded disabled="disabled" makes the text box inaccessible to user input
<fieldset class="fieldset product-registration prod-info" data-hasrequired="Product Information">
<legend class="legend"><span>Product Information</span></legend>
<br>
<div class="field required" style="display: none;">
<label for="phone" class="label"><span>Serial Number</span></label>
<div class="control">
<input type="text" name="serial_number" autocomplete="off" id="serial_number" title="Serial Number" disabled="disabled" class="input-text" data-validate="{required:true}" aria-required="true">
<br>
<span>For Gyre, use serial number on the dry magnet. For skimmers, enter pump's serial number. If serial number is not present, please type "NA"</span>
</div>
</div>
....</fieldset>
My question to y'all is, has anyone been able to register their hydros products through CoralVue? I'd give them the benefit of doubt that this was a simple error, but there's not one but two elements on the page not allowing customers to register for products.