Advertisement
Guest User

Untitled

a guest
Dec 16th, 2018
68
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.46 KB | None | 0 0
  1. {% set comments = __SELF__.comments %}
  2.  
  3. <form action="{{url('/')}}/cmtikweb_sc_post" method="post">
  4.  
  5. <input type="text" name="post_id" value="{{post.id}}" style="display: none;">
  6.  
  7. <label for="comment">{{'COMMENT'|_}}</label>
  8. <input id="comment" type="text" name="comment">
  9. <span class="error-validation"> {{ errors.first('comment') }} </span>
  10.  
  11. <label for="name">{{'NAME'|_}}</label>
  12. <input id="name" type="text" name="name">
  13. <span class="error-validation"> {{ errors.first('name') }} </span>
  14.  
  15. <label for="email">{{'EMAIL'|_}}</label>
  16. <input id="email" type="email" name="email">
  17. <span class="error-validation"> {{ errors.first('email') }} </span>
  18.  
  19. {% flash %}
  20. <h4> {{ message }} </h4>
  21. {% endflash %}
  22.  
  23. <div>
  24. <p>
  25. <input type="checkbox" name="terms" id="terms" />
  26. <label for="terms">
  27. <u>
  28. <strong>{{'I CONSENT THE PROCESSING OF MY DATA'|_}}</strong>
  29. <span>{{'I AGREE WITH THE STORAGE AND USE OF MY DATA IN COMPLIANCE WITH THE'|_}}
  30. <strong>
  31. <a href="#"> {{'PRIVACY POLICY'|_}}</a>
  32. </strong>
  33. </span>
  34. </u>
  35. </label>
  36. </p>
  37. </div>
  38. <span class="error-validation --leftop"> {{ errors.first('terms') }} </span>
  39. <input class="Component-Button --Reply" type="submit" value="SEND">
  40. </form>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement