templates/modules/forum-log-in.html.twig line 1

Open in your IDE?
  1. {% extends "modules/tmpl/default.html.twig" %}
  2. {# forum log-in module #}
  3. {% block module_title %}My Account{% endblock %}
  4. {% block module_content %}
  5. <form>
  6.   <div class="form-group">
  7.     <label>Username</label>
  8.     <input type="text" class="form-control" name="username" placeholder="Enter Username">
  9.   </div>
  10.   <div class="form-group">
  11.     <label>Password</label>
  12.     <input type="password" class="form-control" name="password" placeholder="Enter Password">
  13.   </div>
  14.   <div class="form-check">
  15.     <input type="checkbox" class="form-check-input" name="remember">
  16.     <label >Remember Me</label>
  17.   </div>
  18.   <button type="submit" class="button">Log In</button>
  19.   <a href="#">Register</a>
  20. </form>
  21. {% endblock %}