Guest User

Untitled

a guest
Apr 24th, 2018
82
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 4.65 KB | None | 0 0
  1. <form id="callflow" class="appnitro" method="post" action="">
  2.  
  3. <div class="form_description">
  4.  
  5. <h2>Callflow</h2>
  6.  
  7. <p>Flowsheet to take notes and ensure you meet all QA elements on every call.</p>
  8.  
  9. </div>
  10.  
  11. <ul >
  12.  
  13. <li id="li_1" >
  14.  
  15. <label class="description" for="cust_name">Greet Customer </label> <br>
  16. Thank you for calling ___________ My Name is David to Whom do I have the Pleasure of Speaking with today? <br><br>
  17. <label class="description" for="cust_name"> Customer Name</label>
  18. <div>
  19. <input id="cust_name" name="cust_name" class="element text medium" type="text" maxlength="255" value=""/>
  20. <br>
  21. </div>
  22. <label class="description" for="call_reason">Reason for the call. </label>
  23. <div>
  24. <textarea id="call_reason" name="call_reason" class="element textarea medium"></textarea>
  25. </div>
  26.  
  27.  
  28. </li>
  29.  
  30. <li id = "li_2" >
  31. <label class="description" for="element_2">Provide Assurance Statement </label>
  32. <p>____________ I want to personally apologize that your having to deal with this if this happened to me I would be fustrated as well.</p> <br>
  33.  
  34.  
  35. </li>
  36. <li id = "li_3" >
  37. <label class="description" for="element_3">Provide Promoter Statement </label>
  38. <p> This is not the experience we want our customers to have here at ______________. I would be more than happy to take care this for you. </p><br>
  39. </li>
  40.  
  41. <li id="li_4" >
  42. <label class="description" for="element_4">Ask Probing Questions:</label>
  43. Why do you want to return [insert item]? <br>
  44. Can I ask why your seeking to cancel your order? <br>
  45. Was this item for an event? <br>
  46. Could you describe the damage to me?
  47. <br>
  48. <br>
  49. </li>
  50. <li id = "li_5">
  51. <label class="description" for="tailored_solution"> Propose Solution </label>
  52. <p>D. Discount to keep. | R. Replacement Parts | U. Unit | M. Money Back</p>
  53. <br>
  54. <div>
  55. <textarea id="tailored_solution" name="tailored_solution" class="element textarea medium"></textarea>
  56. </div>
  57. <br>
  58. <br>
  59. <label class="description" for="tailored_solution"> WRAP Call </label>
  60.  
  61. <p> It's going to take just a brief moment here for me to finish up processing this request for you. You wont hear anything but rest assured I am still here just holler if you need anything. </p>
  62. </li>
  63. <li id="li_6" >
  64.  
  65. <label class="description" for="set_expectations">Recap & Set Expectations. </label>
  66.  
  67. <span>
  68.  
  69. <input id="set_expectations_discount" name="set_expectations_discount" class="element checkbox" type="checkbox" value="1" />
  70.  
  71. <label class="choice" for="set_expectations_discount">Discount Expectations</label>
  72.  
  73. <input id="set_expectations_replacement" name="set_expectations_replacement" class="element checkbox" type="checkbox" value="1" />
  74.  
  75. <label class="choice" for="set_expectations_replacement">Replacement Expectations</label>
  76.  
  77. <input id="set_expectations_refund" name="set_expectations_refund" class="element checkbox" type="checkbox" value="1" />
  78.  
  79. <label class="choice" for="set_expectations_refund">Refund Expectations</label>
  80.  
  81. <input id="set_expectations_return" name="set_expectations_return" class="element checkbox" type="checkbox" value="1" />
  82.  
  83. <label class="choice" for="set_expectations_return">Return Expectations</label>
  84.  
  85. </span>
  86.  
  87. </li>
  88. <li id="li_7" >
  89.  
  90. <label class="description" for="close">Check for Additional Needs Addressing any Remaining Questions. </label>
  91.  
  92. <span>
  93.  
  94. <input id="close_1" name="close_1" class="element checkbox" type="checkbox" value="1" />
  95.  
  96. <label class="choice" for="close_1">Yes</label>
  97.  
  98. <input id="close_2" name="close_2" class="element checkbox" type="checkbox" value="1" />
  99.  
  100. <label class="choice" for="close_2">No</label>
  101.  
  102. </span>
  103. </li>
  104. <li id = "li_8">
  105. <label class="description" for="notes"> Generate Notes </label>
  106. <input type="checkbox" name="notes_gen" onclick="FillNotes(this.form)">
  107. <em>Check this box to generate notes.</em>
  108. <div>
  109. <textarea id="notes" name="notes" class="element textarea medium"></textarea>
  110. </div>
  111.  
  112.  
  113. <li class="buttons">
  114.  
  115. <input type="hidden" name="form_id" value="6865" />
  116.  
  117.  
  118. <input id="clearForm" class="button_text" type="reset" name="Clear" value="Clear" />
  119.  
  120. </li>
  121. </ul>
  122. </form>
  123.  
  124. function FillNotes(f) {
  125. if(f.notes.checked == true) {
  126. f.notes.value = f.cust_name.value;
  127. f.notes.value = f.call_reason.value;
  128. f.notes.value = f.tailored_solution.value;
  129. f.notes.value = f.set_expectations.value;
  130. f.notes.value = f.set_expectations_discount.value;
  131. f.notes.value = f.set_expectations_refund.value;
  132. f.notes.value = f.set_expectations_replacement.value;
  133. f.notes.value = f.set_expectations_return.value;
  134. f.notes.value = f.close.value;
  135. f.notes.value = f.close_1.value;
  136. f.notes.value = f.close_2.value;
  137. }
  138. }
  139. }
Add Comment
Please, Sign In to add comment