Le repo des sources pour le site web des JM2L
Vous ne pouvez pas sélectionner plus de 25 sujets Les noms de sujets doivent commencer par une lettre ou un nombre, peuvent contenir des tirets ('-') et peuvent comporter jusqu'à 35 caractères.

il y a 9 ans
il y a 9 ans
il y a 9 ans
il y a 9 ans
il y a 9 ans
il y a 9 ans
12345678910111213141516171819202122232425
  1. <%inherit file="jm2l:templates/layout.mako"/>
  2. <br>
  3. <div class="container">
  4. % if forgot:
  5. <form class="form-signin" action="/sign/forgot" method="post">
  6. <h3 class="form-signin-heading">Mes identifiants</h3>
  7. <hr>
  8. <input name="mail" type="text" class="input-block-level" placeholder="Mon adresse email">
  9. <button class="btn btn-primary btn-block" type="submit">Me renvoyer mes identifiants</button>
  10. </form>
  11. % else:
  12. <form class="form-signin" action="/sign/in" method="post">
  13. <h3 class="form-signin-heading">Me connecter</h3>
  14. <hr>
  15. <input name="username" type="text" class="input-block-level" placeholder="Nom">
  16. <input name="password" type="password" class="input-block-level" placeholder="Mot de passe">
  17. <input name="redirect" type="hidden" value="${comefrom}">
  18. <div class="center">
  19. <button class="btn btn-large btn-primary btn-block" type="submit">S'identifier</button>
  20. </div>
  21. <br>
  22. <a href="/sign/forgot">Je ne me souviens plus de mon mot de passe</a>
  23. </form>
  24. % endif
  25. </div>