Sandata templates. API scripts for a few customers.
This commit is contained in:
@ -25,7 +25,7 @@
|
||||
<input class="sign-up-follow-up-input" placeholder="Medicaid ID #" id="medicaid-id-input"/>
|
||||
<span class="sign-up-follow-up-error-label" id="medicaid-id-label">Please enter a valid, 5-12 digit Medicaid ID number</span>
|
||||
<input class="sign-up-follow-up-input" placeholder="Provider ID #" id="provider-id-input"/>
|
||||
<span class="sign-up-follow-up-error-label" id="provider-id-label">Please enter a valid, 10 digit Provider ID number</span>
|
||||
<span class="sign-up-follow-up-error-label" id="provider-id-label">Please enter a valid, 1-10 digit Provider ID number</span>
|
||||
|
||||
{% comment %} <h1 class="sign-up-follow-up-prompt">Role: </h1> {% endcomment %}
|
||||
{% include "sign_up_follow_up_roles_dropdown" %}
|
||||
@ -234,7 +234,7 @@
|
||||
let splitID = event.target.value.split('');
|
||||
let valid = true;
|
||||
|
||||
if(splitID.length == 10){
|
||||
if(splitID.length >= 1 && splitID.length <= 10){
|
||||
for(let i = 0; i < splitID.length; i++){
|
||||
if(digits[splitID[i]] != splitID[i]){
|
||||
valid = false;
|
||||
|
||||
Reference in New Issue
Block a user