Advertisement
Guest User

Untitled

a guest
Sep 15th, 2019
118
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 3.07 KB | None | 0 0
  1.  
  2.  
  3. {% trans_default_domain 'FOSUserBundle' %}
  4.  
  5.  
  6. <!DOCTYPE html>
  7. <html lang="en" class="body-full-height">
  8.  
  9. <!-- Mirrored from themifycloud.com/demos/templates/joli/pages-login-website.html by HTTrack Website Copier/3.x [XR&CO'2014], Sun, 07 Jul 2019 21:55:07 GMT -->
  10. <head>
  11. <!-- META SECTION -->
  12. <title>T-Shop</title>
  13. <meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
  14. <meta http-equiv="X-UA-Compatible" content="IE=edge" />
  15. <meta name="viewport" content="width=device-width, initial-scale=1" />
  16. <link rel="icon" href="{{ asset('admin/favicoqn.ico') }}" type="image/x-icon"/>
  17.  
  18. <link rel="icon" href="" type="image/x-icon" />
  19.  
  20. <!-- END META SECTION -->
  21.  
  22. <!-- CSS INCLUDE -->
  23. <link rel="stylesheet" type="text/css" id="theme" href="{{ asset('admin/') }}css/theme-default.css"/>
  24. <!-- EOF CSS INCLUDE -->
  25. </head>
  26. <body>
  27. {% block fos_user_content %}
  28. <div class="login-container">
  29.  
  30. <div class="login-box animated fadeInDown">
  31. <div class="login-logo"></div>
  32. <div class="login-body">
  33. <div class="login-title"><strong>Reset</strong> Your Password</div>
  34.  
  35. {% if invalid_username is defined %}
  36. <div class="small-2 small-offset-5 columns" role="alert" style="color: white; width:400px;margin-bottom:30px; margin-right:350px;">
  37. <div>{{ 'resetting.request.invalid_username'|trans({'%username%': invalid_username}) }}</div>
  38. </div>
  39. {% endif %}
  40.  
  41. <form action="{{ path('fos_user_resetting_send_email') }}" method="POST" class="form-horizontal">
  42.  
  43. <div class="form-group">
  44. <div class="col-md-12">
  45. {#<input type="password" class="form-control" placeholder="Password"/>#}
  46. <input type="email" name="email" id="username" class="form-control" placeholder="Please enter your email email" value="" tabindex="1" maxlength="35" required>
  47.  
  48. </div>
  49. </div>
  50.  
  51. <div class="form-group">
  52. <div class="col-md-6">
  53. <a href="{{ path('fos_user_security_login') }}" class="btn btn-link btn-block">Go back to login ?</a>
  54. </div>
  55. <div class="col-md-6">
  56. <button class="btn btn-info btn-block">Send</button>
  57. </div>
  58. </div>
  59. <div class="login-or">OR</div>
  60. <div class="login-subtitle">
  61. Don't have an account yet? <a href="{{ path('fos_user_registration_register')}}">Create an account</a>
  62. </div>
  63. </form>
  64. </div>
  65. </div>
  66.  
  67. </div>
  68. {% endblock fos_user_content %}
  69. </body>
  70.  
  71. <!-- Mirrored from themifycloud.com/demos/templates/joli/pages-login-website.html by HTTrack Website Copier/3.x [XR&CO'2014], Sun, 07 Jul 2019 21:55:07 GMT -->
  72. </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement