Advertisement
Guest User

Untitled

a guest
Jul 3rd, 2019
86
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.86 KB | None | 0 0
  1. {% extends 'layout.html' %}
  2.  
  3. {% block body %}
  4. <div>
  5. <span class="h3">Administrative Login</span>
  6. <span class="float-right">
  7. <!--<a href="#" class="btn btn-light" data-toggle="modal" data-target="#mod_addadmin">Add New Admin</a>-->
  8. </span>
  9. </div>
  10. <hr/>
  11. <div class="row">
  12. <div class="col-md-4">
  13. {% if msg|length > 1 %} <div class="alert alert-info">{{msg}}</div> {% endif %}
  14. <form action="/login" method="POST" class="addform">
  15. <div><span class="fsp">Username</span> <input type="text" name="username" class="form-control" required /></div>
  16. <div><span class="fsp">Password</span> <input type="password" name="password" class="form-control" required /></div>
  17. <div><input type="submit" name="submit" value="Login" class="btn btn-primary" /></div>
  18. </form>
  19. </div>
  20. </div>
  21. {% endblock %}
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement