You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

42 lines
917 B

  1. :: use 'design.mtt'::
  2. <div class="col-md-12">
  3. <div class="article">
  4. <h1>Changement de mot de passe</h1>
  5. ::if error!=null::
  6. <div class="alert alert-danger">
  7. ::error::
  8. </div>
  9. ::else::
  10. ::if step==1 ::
  11. <p>
  12. ::_("If you have forgotten your password or if you would like to change it, please key-in below your e-mail address:")::
  13. ::raw form::
  14. </p>
  15. ::elseif step==2::
  16. <div class="alert alert-danger">
  17. ::_("An e-mail was sent to you to allow you changing your password.")::
  18. </div>
  19. ::elseif step==3::
  20. <p>
  21. ::_("Key-in your new password:")::
  22. ::raw form::
  23. </p>
  24. ::else::
  25. <div class="alert alert-success">
  26. ::_("Congratulations, your password have been modified!")::
  27. </div>
  28. <p>
  29. <a href="/user/login" class="btn btn-default">::_("Log in with your new password")::</a>
  30. </p>
  31. ::end::
  32. ::end::
  33. </div>
  34. </div>
  35. ::end::