summaryrefslogtreecommitdiff
path: root/templates
diff options
context:
space:
mode:
authorB. Stack <bgstack15@gmail.com>2021-06-27 18:01:37 -0400
committerB. Stack <bgstack15@gmail.com>2021-06-27 18:01:37 -0400
commit5851bfabb4caba9c24ec4fd5edece49c99137f65 (patch)
tree8c0701815edf8ee750e51081f8d7cde668402657 /templates
parentmove config to separate file (diff)
downloadsession_app-5851bfabb4caba9c24ec4fd5edece49c99137f65.tar.gz
session_app-5851bfabb4caba9c24ec4fd5edece49c99137f65.tar.bz2
session_app-5851bfabb4caba9c24ec4fd5edece49c99137f65.zip
add settings page for admins group
so far we only support changing the ldap_uri for runtime.
Diffstat (limited to 'templates')
-rw-r--r--templates/settings.html17
1 files changed, 17 insertions, 0 deletions
diff --git a/templates/settings.html b/templates/settings.html
new file mode 100644
index 0000000..c5f6e68
--- /dev/null
+++ b/templates/settings.html
@@ -0,0 +1,17 @@
+<html>
+<head>
+<title>Session_app settings</title>
+<!--<style type="text/css" media="screen">
+input {
+ width: 500px;
+}
+</style> -->
+</head>
+<body>
+<h1>Settings</h1>
+<form action="#" method="post">
+<p>Ldap URI <input style="width: 500px;" type="text" value="{{ ldap_uri }}" name="ldap_uri"</p>
+<p><input accesskey="s" type="submit" value="Submit"/></p>
+</form>
+</center>
+</html>
bgstack15