Advertisement
Guest User

Untitled

a guest
Oct 27th, 2016
167
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.79 KB | None | 0 0
  1. swiftmailer:
  2. transport: gmail
  3. username: myEmail@gmail.com
  4. password: passowrd
  5. spool: { type: memory }
  6. fos_user:
  7. db_driver: orm
  8. user_class: AppDesktopBundleEntityUser
  9. firewall_name: main
  10. service:
  11. mailer: fos_user.mailer.twig_swift
  12. resetting:
  13. token_ttl: 86400 # change this value, it is in seconds = 24 hours
  14. email:
  15. template: email/password_resetting.email.twig
  16. from_email:
  17. address: noreply@acmedemo.com
  18. sender_name: Title Email
  19.  
  20. <div class="row">
  21. <div class="col-md-3 col-sm-3">
  22. </div>
  23. <div class="col-md-5 col-sm-5" style="margin-top: 3%">
  24.  
  25. <div class="title-area" style="margin-bottom: 2%;">
  26. <h2 class="title">Reset</h2>
  27. <span class="line"></span>
  28. </div>
  29.  
  30. <form action="{{ path('fos_user_resetting_check_email') }}" method="POST" class="comments-form contact-form">
  31. <div>
  32. {% if invalid_username is defined %}
  33. <p>{{ 'resetting.request.invalid_username'|trans({'%username%': invalid_username}) }}</p>
  34. {% endif %}
  35. <div class="input-group" style="margin-bottom: 2%;">
  36. <span class="input-group-addon"><i class="fa fa-user"></i></span>
  37. <input class="form-control" placeholder="Login" type="text" id="username" name="username" required="required" style="height: 55px;font-size: 20px;">
  38. </div>
  39. </div>
  40. <div>
  41. <input type="submit" value="Reset" class="btn btn-lg btn-primary btn-block"/>
  42. </div>
  43. </form>
  44. </div>
  45. <div class="col-md-3 col-sm-3">
  46. <div class="right-bloc-pub" style="width:300px; height: 600px; background:red; margin-top:13%;">
  47. </div>
  48. </div>
  49. </div>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement