templates/reset_password/layout_reset.html.twig line 1

Open in your IDE?
  1. <!DOCTYPE html>
  2. <html lang="fr">
  3. <head>
  4. <meta http-equiv="X-UA-Compatible" content="IE=edge">
  5. <meta charset="UTF-8">
  6. <meta content="width=device-width, initial-scale=1, maximum-scale=1, user-scalable=no" name="viewport">
  7. <title>{% block title %}{% endblock %}</title>
  8.     <meta name="viewport" content="width=device-width, initial-scale=1">
  9.     <meta name="author" content="">
  10.     <link rel="stylesheet" href="https://stackpath.bootstrapcdn.com/bootstrap/4.3.1/css/bootstrap.min.css"
  11.           integrity="sha384-ggOyR0iXCbMQv3Xipma34MD+dH/1fQ784/j6cY/iJTQUOhcWr7x9JvoRxT2MZw1T" crossorigin="anonymous">
  12.     <link rel="stylesheet" href="https://use.fontawesome.com/releases/v5.3.1/css/all.css" integrity="sha384-mzrmE5qonljUremFsqc01SB46JvROS7bZs3IO2EmfFsd15uHvIt+Y8vEf7N7fWAU" crossorigin="anonymous">
  13.     <link href="{{ asset('/images/favicon.ico') }}" rel="shortcut icon" type="image/x-icon"/>
  14.     <link href="{{ asset('css/admin-style.css') }}" rel="stylesheet">
  15.     <script src="https://code.jquery.com/jquery-3.3.1.slim.min.js"
  16.             integrity="sha384-q8i/X+965DzO0rT7abK41JStQIAqVgRVzpbzo5smXKp4YfRvH+8abtTE1Pi6jizo"
  17.             crossorigin="anonymous"></script>
  18.     <link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/4.7.0/css/font-awesome.min.css">
  19. <style>
  20. #page-reset{
  21. background: #E9E9E9;
  22. }
  23. #page-reset .container{
  24. background: #fff;
  25. }
  26. #page-reset header{
  27. padding: 20px;
  28. text-align: left;
  29. display: block;
  30. width: 100%;
  31. min-height: 20px;
  32. overflow: hidden;
  33. background: #fff;
  34. /*border-bottom: 1px solid rgba(0,0,0,0.3)*/
  35. }
  36. #page-reset #logo{
  37. display: block;
  38. margin: 0 auto;
  39. }
  40. #page-reset #content_reset{
  41. background: #fff;
  42. padding: 20px;
  43. color: #34495e;
  44. font-size: 18px;
  45. }
  46. #page-reset #content_reset h2{
  47. color: #da2b10;
  48. font-size: 24px;
  49. margin-bottom: 35px;
  50. }
  51. @media (min-width: 1200px){
  52. #page-reset .container {
  53. width: 940px;
  54. padding-left: 0;
  55. padding-right: 0;
  56. }
  57. }
  58. @media (max-width: 980px){
  59. #page-reset {
  60. background: #fff;
  61. }
  62. }
  63. .form-group .required .control-label:after {
  64.   content:"*";color:red;
  65. }
  66. </style>
  67. </head>
  68. <body id="page-reset">
  69. <div class="container">
  70.   {% if app.session.flashBag.has('success') %}
  71.         <div class="alert alert-success">
  72.             {% for msg in app.session.flashBag.get('success') %}
  73.                 {{ msg }}
  74.             {% endfor %}
  75.         </div>
  76.     {% endif %}
  77. <header style="border: 2px solid rgba(0,0,0,.125);}">
  78. <a href="https://www.repam.fr/"><img id="logo" alt="" src="{{asset('/images/logo-repam.png')}}" class="img-responsive"></a>
  79. </header>
  80. <section id="content_reset">
  81. <div>
  82.     {% block body %}
  83.     {% endblock body %}
  84. </div>
  85. </section>
  86. </div>
  87. <script>
  88. $(document).ready(function() {
  89. if ($(window).width() > 980) {
  90. fixcontent();
  91. }
  92. $(document).resize(function() {
  93. fixcontent();
  94. });
  95. function fixcontent() {
  96. _height_body = $(window).height();
  97. $("#page-reset .container").css({"min-height":_height_body + "px"});
  98. }
  99. });
  100. </script>
  101. </body>
  102. </html>