您最多选择25个主题 主题必须以字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符

29 行
1.1KB

  1. <section style="padding: 48px 0; max-width: 640px; margin: 0 auto;">
  2. <div class="section-heading">
  3. <span class="eyebrow">Start your order</span>
  4. <h1>Request an order</h1>
  5. <p>
  6. Enter your email address and jurisdiction number below. We'll email you a
  7. secure link to continue your order.
  8. </p>
  9. </div>
  10. <form method="post" action="<%= H(Routes().AppURL & "request-order") %>">
  11. <input type="hidden" name="csrf_token" value="<%= H(csrfToken) %>" />
  12. <div class="form-group" style="margin-bottom: 16px;">
  13. <label for="Email">Email address</label>
  14. <input type="email" class="form-control" id="Email" name="Email" required
  15. value="<%= H(emailValue) %>" />
  16. </div>
  17. <div class="form-group" style="margin-bottom: 24px;">
  18. <label for="JurisdictionNumber">Jurisdiction number</label>
  19. <input type="text" class="form-control" id="JurisdictionNumber" name="JurisdictionNumber" required
  20. value="<%= H(jurisdictionValue) %>" />
  21. </div>
  22. <button type="submit" class="button button-primary">Request order</button>
  23. </form>
  24. </section>

Powered by TurnKey Linux.