Advertisement
Guest User

ldap_login.html

a guest
Jan 21st, 2016
594
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.93 KB | None | 0 0
  1. <!DOCTYPE html>
  2. <html lang="en">
  3. <head>
  4. <style>
  5. {% block style %}{% include "templates/includes/login/login.css" %}{% endblock %}
  6. {{ css }}
  7. </style>
  8. <link rel="stylesheet" type="text/css" href="assets/css/desk.min.css">
  9. </head>
  10. <body>
  11. {% block content %}
  12. <form class="form-signin form-signup" role="form" action="/api/method/frappe_ldap.templates.pages.ldap_login.ldap_login">
  13. <h2 class="form-signin-heading">{{ _("LDAP Login") }}</h2>
  14. <input type="text" name="user"
  15. class="form-control" placeholder="{{ _('User Name') }}" required autofocus>
  16. <input type="password" name="pwd"
  17. class="form-control" placeholder="{{ _('Password') }}" required>
  18. <button class="btn btn-lg btn-primary btn-block btn-signup" type="submit">{{ _("Login") }}</button>
  19. </form>
  20.  
  21. {% endblock %}
  22.  
  23.  
  24. {% block sidebar %}{% endblock %}
  25. </body>
  26. </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement