summaryrefslogtreecommitdiff
path: root/templates/settings.html
blob: 994a8b2e701482b6f7084ce0d678fb483ac24a7d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
<html>
<head>
<title>Session_app settings</title>
<meta name="viewport" content="width=device-width, initial-scale=1">
<!--<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>
</html>
bgstack15