templates/registration/steps/w9.html.twig line 1

Open in your IDE?
  1. {% if formLabel == 'W-9 Tax Information' or formLabel == 'Tax Info (US)' %}
  2. <div class="row">
  3. <div class="col-12">
  4. <div class="alert alert-warning font-weight-bold">
  5. <p>
  6. In order to comply with Internal Revenue Service (IRS) regulations, we require taxpayer identification information. This information will be used to determine whether you will receive a Form 1099-NEC and/or 1099-MISC for payment(s) made to you through the Jewelry Rewards program, and whether payments are subject to Federal withholding.
  7. </p>
  8. <p>
  9. The information you provided below must match the information that you provide to the IRS for income tax reporting. Federal law requires us to take backup withholding from certain future payments if you fail to provide the information requested.
  10. </p>
  11. <p>
  12. <strong>
  13. We utilize and maintain industry standard encryption and store all sensitive data behind a firewall on a secured server with strict access protocols (SOC2 Compliant).
  14. </strong>
  15. </p>
  16. <p>
  17. Click here for more information <a target="_blank" href="https://www.irs.gov/pub/irs-pdf/fw9.pdf" class="btn-link">IRS Form W-9</a>
  18. </p>
  19. </div>
  20. <table class="table table-condensed table-bordered">
  21. <tr>
  22. <td>
  23. <strong>Name (as shown on your income tax return)</strong><br>
  24. {{ user.fullName }}
  25. </td>
  26. </tr>
  27. <tr>
  28. <td>
  29. <strong>Federal tax classification of the person</strong><br>
  30. Individual/sole proprietor or single-member LLC
  31. </td>
  32. </tr>
  33. <tr>
  34. <td>
  35. <strong>Address</strong><br>
  36. {{ user.address1 }} {{ user.address2 }}
  37. </td>
  38. </tr>
  39. <tr>
  40. <td>
  41. <strong>State</strong><br>
  42. {{ user.state }}
  43. </td>
  44. </tr>
  45. <tr>
  46. <td>
  47. <strong>City</strong><br>
  48. {{ user.city }}
  49. </td>
  50. </tr>
  51. <tr>
  52. <td>
  53. <strong>ZIP</strong><br>
  54. {{ user.zip }}
  55. </td>
  56. </tr>
  57. {% if user.ssn %}
  58. <tr>
  59. <td>
  60. <strong>SSN</strong><br>
  61. XXX-XX-{{ user.ssn|slice(-4) }}
  62. </td>
  63. </tr>
  64. {% endif %}
  65. </table>
  66. <div class="card card-info mb-3">
  67. <div class="card-header bg-warning ">Under penalties of perjury, I certify that:</div>
  68. <div class="card-body">
  69. <ol>
  70. <li>The number shown on this form is my correct taxpayer information AND</li>
  71. <li>
  72. I am subject to backup withholding OR
  73. <ol type="a">
  74. <li>I am exempt from backup withholding</li>
  75. <li>I have not been notified by the Internal Revenue Service (IRS) that I am subject to backup withholding as a result or failure to report all interest or dividends, or</li>
  76. <li>the IRS has notified me that I am no longer subject to backup withholding AND</li>
  77. </ol>
  78. </li>
  79. <li>I am a U.S. citizen or other U.S. person (including U.S. resident alien)</li>
  80. </ol>
  81. <p><b>Certification Instructions</b>: To certify the statement above, complete your information below.</p>
  82. <p>By typing my name and contact email address, I confirm that I agree to the electronic submission of my completed W-9 Form and that I accept the information provided constitutes a legally binding digital signature.</p>
  83. {{ form_row(form.w9Name) }}
  84. {{ form_row(form.w9Email) }}
  85. {% if form.ssn is defined %}
  86. {{ form_row(form.ssn) }}
  87. {% endif %}
  88. </div>
  89. </div>
  90. </div>
  91. </div>
  92. {% endif %}