暫無描述
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.

signin.html 1.3KB

12345678910111213141516171819202122232425262728293031323334353637383940
  1. {% extends "base.html" %}
  2. {% block title %}Lodel 2 - Sign In{% endblock %}
  3. <!-- Custom styles for this template -->
  4. {% block style %}
  5. <link href="http://147.94.79.8/css/signin.css" rel="stylesheet">
  6. {% endblock %}
  7. {% block content %}
  8. <div class="container">
  9. <h1 class="h1_lodel">Lodel2 - Sign In</h1>
  10. <form class="form-horizontal" method="POST" action="">
  11. <div class="form-group">
  12. <label for="inputLogin" class="col-sm-2 control-label">Login</label>
  13. <div class="col-xs-4">
  14. <input type="text" class="form-control" id="inputLogin" name="inputLogin" placeholder="Login" required>
  15. </div>
  16. </div>
  17. <div class="form-group">
  18. <label for="inputPassword" class="col-sm-2 control-label">Password</label>
  19. <div class="col-xs-4">
  20. <input type="password" class="form-control" id="inputPassword" name="inputPassword" placeholder="Password">
  21. </div>
  22. </div>
  23. <div class="form-group">
  24. <div class="col-sm-offset-2 col-sm-10">
  25. <div class="checkbox">
  26. <label>
  27. <input type="checkbox"> Remember me
  28. </label>
  29. </div>
  30. </div>
  31. </div>
  32. <div class="form-group">
  33. <div class="col-sm-offset-2 col-sm-10">
  34. <button type="submit" class="btn btn-default">Sign in</button>
  35. </div>
  36. </div>
  37. </form>
  38. </div> <!-- /container -->
  39. {% endblock %}