summaryrefslogtreecommitdiff
path: root/INTERACT.md
diff options
context:
space:
mode:
authorB. Stack <bgstack15@gmail.com>2021-06-21 16:52:56 -0400
committerB. Stack <bgstack15@gmail.com>2021-06-21 16:52:56 -0400
commit1c5123a2b47006e59739959ab67b51129d39a761 (patch)
tree504c05af2c6a305e99c88c5a2f9537c9727950a4 /INTERACT.md
parentWIP: improve login form (diff)
downloadsession_app-1c5123a2b47006e59739959ab67b51129d39a761.tar.gz
session_app-1c5123a2b47006e59739959ab67b51129d39a761.tar.bz2
session_app-1c5123a2b47006e59739959ab67b51129d39a761.zip
add ldap support
Diffstat (limited to 'INTERACT.md')
-rw-r--r--INTERACT.md4
1 files changed, 3 insertions, 1 deletions
diff --git a/INTERACT.md b/INTERACT.md
index b3c3914..c36b238 100644
--- a/INTERACT.md
+++ b/INTERACT.md
@@ -46,4 +46,6 @@ Visit protected page now that we have a session.
Logged in through: kerberos
</html>
-2021-06-20 ldap basic auth, and a login form are still pending.
+For submitting to the form, pass in form data using fields `username`, `password`, and optionally `logintype` which can be defined within the application. An included option is `ldap`. Kerberos auth through the form is not supported.
+
+ curl -L -X POST http://d2-03a:5000/login/ --data 'username=bgstack15&password=qwerty' -b ~/cookiejar.txt -c ~/cookiejar.txt
bgstack15