Sandata templates. API scripts for a few customers.
This commit is contained in:
@ -1,6 +1,11 @@
|
||||
{% include "header" %}
|
||||
{% include "course_version_outdated_alert", courses: courses.enrolled %}
|
||||
{% include "sub_navigation" %}
|
||||
<div role="alert" class="np-alert np-alert-global np-alert-info" style="background-color: #156082;">
|
||||
<div class="np-alert-container uk-container uk-container-center">
|
||||
<a href="https://sandata.zendesk.com/hc/en-us/requests/new?ticket_form_id=29573263548819" style="text-decoration:none; background-color:#156082; color:#ffffff;"/>For Help/Support Click here.</a>
|
||||
</div>
|
||||
</div>
|
||||
<main class="np-main np-dashboard np-subpage-container np-max-width">
|
||||
<div class="row np-flex-center">
|
||||
<div class="col-xs-12 col-sm-8">
|
||||
|
||||
@ -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;
|
||||
|
||||
@ -22,4 +22,8 @@
|
||||
.np-box-header{
|
||||
background: #FFF !important;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
.np-sub-navigation {
|
||||
margin-bottom: 0px;
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user