ddi.service-now.com Open in urlscan Pro
149.96.242.155  Public Scan

URL: https://ddi.service-now.com/serviceready/
Submission: On February 27 via api from IE — Scanned from DE

Form analysis 3 forms found in the DOM

<form ng-model="feedback" role="form" aria-invalid="false" class="ng-pristine ng-untouched ng-valid ng-not-empty" style="">
  <!-- Header -->
  <!-- ngIf: !feedbackSubmitted || !autoHide -->
  <div ng-if="!feedbackSubmitted || !autoHide" class="modal-header ng-scope" style="">
    <button ng-disabled="feedbackSubmitting" type="button" class="close" data-dismiss="modal" role="button"><i class="fa fa-times"></i></button>
    <h4 class="ng-binding"><i class="fa fa-comment" aria-hidden="true"></i>&nbsp;&nbsp;Feedback</h4>
  </div><!-- end ngIf: !feedbackSubmitted || !autoHide -->
  <!-- Body -->
  <div class="modal-body">
    <!-- ngIf: !feedbackSubmitted -->
    <div ng-if="!feedbackSubmitted" class="ng-scope" style="">
      <!-- Who -->
      <div class="showWho" ng-show="true" aria-hidden="false">
        <label for="feedbackWho"><strong>Name:</strong></label>
        <input name="feedbackWho" id="feedbackWho" ng-model="feedback.who" class="form-control feedbackInput ng-pristine ng-untouched ng-valid ng-empty" placeholder="Jane Doe" role="textbox" aria-invalid="false">
        <label for="feedbackEmail"><strong>Email:</strong></label>
        <input name="feedbackEmail" id="feedbackEmail" ng-model="feedback.email" ng-change="resetError()" class="form-control feedbackInput ng-pristine ng-untouched ng-valid ng-empty" placeholder="jane.doe@site.com" role="textbox"
          aria-invalid="false">
      </div>
      <!-- Rating -->
      <div class="showRating" ng-show="true" aria-hidden="false">
        <label for="feedbackText"><strong class="ng-binding">How did you feel about your experience with our portal?</strong></label>
        <div class="starRatingContainer">
          <!-- Stars -->
          <!-- ngRepeat: item in c.data.wdtOptions.lvlRatingTxt -->
          <div class="starRating ng-scope" ng-repeat="item in c.data.wdtOptions.lvlRatingTxt">
            <div class="starText hidden-xs ng-binding"> Extremely Dissatisfied </div>
            <span class="fa-stack fa-lg starUnselected" ng-class="starClasses[item.value]" ng-click="setSelectedStars(item.value, true)" ng-mouseover="setSelectedStars(item.value)" ng-mouseleave="offStarHover()" role="button" style="">
              <i class="fa fa-star fa-stack-2x starFill"></i> <i class="fa fa-star-o fa-stack-2x starBorder"></i> </span>
          </div><!-- end ngRepeat: item in c.data.wdtOptions.lvlRatingTxt -->
          <div class="starRating ng-scope" ng-repeat="item in c.data.wdtOptions.lvlRatingTxt">
            <div class="starText hidden-xs ng-binding"> Slightly Dissatisfied </div>
            <span class="fa-stack fa-lg starUnselected" ng-class="starClasses[item.value]" ng-click="setSelectedStars(item.value, true)" ng-mouseover="setSelectedStars(item.value)" ng-mouseleave="offStarHover()" role="button" style="">
              <i class="fa fa-star fa-stack-2x starFill"></i> <i class="fa fa-star-o fa-stack-2x starBorder"></i> </span>
          </div><!-- end ngRepeat: item in c.data.wdtOptions.lvlRatingTxt -->
          <div class="starRating ng-scope" ng-repeat="item in c.data.wdtOptions.lvlRatingTxt">
            <div class="starText hidden-xs ng-binding"> Neutral </div>
            <span class="fa-stack fa-lg starUnselected" ng-class="starClasses[item.value]" ng-click="setSelectedStars(item.value, true)" ng-mouseover="setSelectedStars(item.value)" ng-mouseleave="offStarHover()" role="button" style="">
              <i class="fa fa-star fa-stack-2x starFill"></i> <i class="fa fa-star-o fa-stack-2x starBorder"></i> </span>
          </div><!-- end ngRepeat: item in c.data.wdtOptions.lvlRatingTxt -->
          <div class="starRating ng-scope" ng-repeat="item in c.data.wdtOptions.lvlRatingTxt">
            <div class="starText hidden-xs ng-binding"> Moderately Satisfied </div>
            <span class="fa-stack fa-lg starUnselected" ng-class="starClasses[item.value]" ng-click="setSelectedStars(item.value, true)" ng-mouseover="setSelectedStars(item.value)" ng-mouseleave="offStarHover()" role="button" style="">
              <i class="fa fa-star fa-stack-2x starFill"></i> <i class="fa fa-star-o fa-stack-2x starBorder"></i> </span>
          </div><!-- end ngRepeat: item in c.data.wdtOptions.lvlRatingTxt -->
          <div class="starRating ng-scope" ng-repeat="item in c.data.wdtOptions.lvlRatingTxt">
            <div class="starText hidden-xs ng-binding"> Extremely Satisfied </div>
            <span class="fa-stack fa-lg starUnselected" ng-class="starClasses[item.value]" ng-click="setSelectedStars(item.value, true)" ng-mouseover="setSelectedStars(item.value)" ng-mouseleave="offStarHover()" role="button" style="">
              <i class="fa fa-star fa-stack-2x starFill"></i> <i class="fa fa-star-o fa-stack-2x starBorder"></i> </span>
          </div><!-- end ngRepeat: item in c.data.wdtOptions.lvlRatingTxt -->
        </div>
      </div>
      <!-- Text entry -->
      <label for="feedbackTextInput"><strong>Please share your thoughts with us!</strong></label>
      <textarea name="feedbackTextInput" id="feedbackTextInput" ng-model="feedback.text" class="form-control feedbackInput ng-pristine ng-untouched ng-valid ng-empty" placeholder="What did you like, dislike or would like to see?" role="textbox"
        aria-invalid="false"></textarea>
    </div><!-- end ngIf: !feedbackSubmitted -->
    <!-- Feedback Submitted / Error -->
    <!-- ngIf: feedbackSubmitted || feedbackError -->
  </div>
  <!-- Footer -->
  <!-- ngIf: !feedbackSubmitted -->
  <div ng-if="!feedbackSubmitted" class="modal-footer ng-scope" style="">
    <button type="button" ng-disabled="feedbackSubmitting" class="btn btn-default" data-dismiss="modal" role="button">Cancel</button>
    <button ng-disabled="feedback.text.length == 0 || feedback.who.length == 0 || feedback.email.length == 0 || feedbackSubmitting || guidLoading" ng-click="submitFeedback()" type="button" class="btn btn-primary" role="button"
      disabled="disabled">Send</button>
  </div><!-- end ngIf: !feedbackSubmitted -->
</form>

<form ng-submit="c.submitSearch()" class="ng-pristine ng-valid" role="form">
  <input type="hidden" name="id" value="search" autocomplete="off">
  <input type="hidden" name="t" value="kbcsp" autocomplete="off">
  <div class="input-group input-group-md">
    <!-- uses ui.bootstrap.typeahead -->
    <input name="q" type="text" placeholder="Search" ng-model="c.searchTerm" autocomplete="off" uib-typeahead="item as item.primary for item in c.getResults($viewValue)" typeahead-wait-ms="250" typeahead-focus-first="false"
      typeahead-on-select="c.onSelect($item, $model, $label)" typeahead-template-url="csp-typeahead.html" typeahead-popup-template-url="csp-typeahead-popup.html" class="form-control input-typeahead ng-pristine ng-untouched ng-valid ng-empty"
      role="textbox" aria-label="Search" tabindex="0" aria-haspopup="true" aria-autocomplete="list" aria-owns="typeahead-31-128" data-aria-expanded="false">
    <ul class="dropdown-menu ng-isolate-scope ng-hide" ng-show="isOpen() &amp;&amp; !moveInProgress" ng-style="{top: position().top+'px', left: position().left+'px'}" role="listbox" aria-hidden="true" uib-typeahead-popup="" id="typeahead-31-128"
      matches="matches" active="activeIdx" select="select(activeIdx, evt)" move-in-progress="moveInProgress" query="query" position="position" assign-is-open="assignIsOpen(isOpen)" debounce="debounceUpdate" template-url="csp-typeahead.html"
      popup-template-url="csp-typeahead-popup.html">
      <li role="option" aria-hidden="true" style="display: none"></li>
      <!-- ngRepeat: match in matches track by $index -->
      <div style="line-height: 20px; background-color:#D9E1E2;  padding-top: 4px; padding-bottom: 4px; border-top: 1px solid black; color:#425563; font-size: 14px; font-weight:bold;">
        <h> Not seeing what you are looking for? Click </h>
        <a href="/serviceready?id=csm_get_help&amp;sys_id=af793ea8c3621200f3897bfaa2d3aeb5">here</a>
        <h> to open a ticket. </h>
      </div>
    </ul>
    <span class="input-group-btn"> <button name="search" type="submit" class="btn btn-default" title="Search" aria-label="Search">
        <!-- ngIf: ::c.options.glyph --><i ng-if="::c.options.glyph" class="fa fa-search"></i><!-- end ngIf: ::c.options.glyph --> </button> </span>
  </div>
</form>

<form ng-submit="c.submitSearch()" class="ng-pristine ng-valid" role="form">
  <input type="hidden" name="id" value="search" autocomplete="off">
  <input type="hidden" name="t" value="kbcsp" autocomplete="off">
  <div class="input-group input-group-md">
    <!-- uses ui.bootstrap.typeahead -->
    <input name="q" type="text" placeholder="Search (minimum 3 characters)" ng-model="c.searchTerm" autocomplete="off" uib-typeahead="item as item.primary for item in c.getResults($viewValue)" typeahead-wait-ms="250" typeahead-focus-first="false"
      typeahead-on-select="c.onSelect($item, $model, $label)" typeahead-template-url="sp-typeahead.html" typeahead-popup-template-url="sp-typeahead-popup.html" class="form-control input-typeahead ng-pristine ng-untouched ng-valid ng-empty"
      role="textbox" aria-label="Search (minimum 3 characters)" tabindex="0" aria-haspopup="true" aria-autocomplete="list" aria-owns="typeahead-102-9644" data-aria-expanded="false">
    <ul class="dropdown-menu ng-isolate-scope ng-hide" ng-show="isOpen() &amp;&amp; !moveInProgress" ng-style="{top: position().top+'px', left: position().left+'px'}" role="listbox" aria-hidden="true" uib-typeahead-popup="" id="typeahead-102-9644"
      matches="matches" active="activeIdx" select="select(activeIdx, evt)" move-in-progress="moveInProgress" query="query" position="position" assign-is-open="assignIsOpen(isOpen)" debounce="debounceUpdate" template-url="sp-typeahead.html"
      popup-template-url="sp-typeahead-popup.html">
      <li role="option" aria-hidden="true" style="display: none"></li>
      <!-- ngRepeat: match in matches track by $index -->
    </ul>
    <span class="input-group-btn"> <button name="search" type="submit" class="btn btn-default" title="Search" aria-label="Search">
        <!-- ngIf: ::c.options.glyph --><i ng-if="::c.options.glyph" class="fa fa-search"></i><!-- end ngIf: ::c.options.glyph --> </button> </span>
  </div>
</form>

Text Content

Skip to page content
Feedback

  FEEDBACK

Name: Email:
How did you feel about your experience with our portal?
Extremely Dissatisfied
Slightly Dissatisfied
Neutral
Moderately Satisfied
Extremely Satisfied
Please share your thoughts with us!
Cancel Send
Skip to main content SERVICE READY Toggle navigation
 * 
   
   
   
   
   
   
   
   
   
 *   
     
     
   
   * HELP LIBRARY
   
     
     
     
     
   
   * LOG ON
   
     
     
     
     
     
     
   * 
     
     
   * 
     
   
   
   

   
   
   

 * HELP LIBRARY

   
   
   
   

 * LOG ON

   
   
   
   
   
   
 * 
   
   
 * 
   





CONSUMER SERVICE PORTAL

Good afternoon,
Need Help? Start by searching here.
 * 
   
   Not seeing what you are looking for? Click here to open a ticket.


POPULAR ARTICLES


   
   
 * Access a PDF Version of Leader3 Ready Participant Report
   
   
   
 * Activate an Inactive Simulation link
   
   
   
 * An error has occurred message while completing a Manager Ready or Leader3
   Ready simulation
   
   
   
 * Assessing Talent Technical Specification
   
   
   
 * Assessment Management System / Test Track Technical Specifications v7.14
   
   
   
 * Authentication Failed/Invalid Login
   
   
   
 * Change the Competencies on Published TS: Access Interview Guides
   
   
   
 * Change Your Test Advantage System Account Password
   
   
   
 * Course won't start or load when I click it
   
   
   


SEARCH CATEGORIES

Pinpoint

Facilitator Network

Leadership Assessments

Early Identifier

 * 
   





STILL NEED HELP? OUR CUSTOMER SUPPORT IS BY YOUR SIDE.


+1 (800) 438-4525


CREATE A SUPPORT TICKET



SERVICE.READY@DDIWORLD.COM



LIVE AGENT CHAT


Service Ready Footer

Contact

+1 (800) 438-4525

Service.Ready@ddiworld.com

Open a Ticket

Live Agent Chat

We can also help you:

Check Ticket Status

Search Help Articles

Let us know how we're doing:

Take a Survey

DDI Product and Process Suggestions

Check us out:

ddiworld.com

DDI Privacy Policy | © Development Dimensions International, Inc., 2019. All
rights reserved. | GDPR Compliance | Data Security