├── .gitignore ├── Gopkg.toml ├── LICENCE ├── Makefile ├── README.md ├── app ├── ldap.go ├── util.go └── web.go ├── main.go ├── screenshots └── index.png ├── static └── style.css └── templates └── index.html /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thammuio/ldap-passwd-webui/HEAD/.gitignore -------------------------------------------------------------------------------- /Gopkg.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thammuio/ldap-passwd-webui/HEAD/Gopkg.toml -------------------------------------------------------------------------------- /LICENCE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thammuio/ldap-passwd-webui/HEAD/LICENCE -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thammuio/ldap-passwd-webui/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thammuio/ldap-passwd-webui/HEAD/README.md -------------------------------------------------------------------------------- /app/ldap.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thammuio/ldap-passwd-webui/HEAD/app/ldap.go -------------------------------------------------------------------------------- /app/util.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thammuio/ldap-passwd-webui/HEAD/app/util.go -------------------------------------------------------------------------------- /app/web.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thammuio/ldap-passwd-webui/HEAD/app/web.go -------------------------------------------------------------------------------- /main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thammuio/ldap-passwd-webui/HEAD/main.go -------------------------------------------------------------------------------- /screenshots/index.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thammuio/ldap-passwd-webui/HEAD/screenshots/index.png -------------------------------------------------------------------------------- /static/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thammuio/ldap-passwd-webui/HEAD/static/style.css -------------------------------------------------------------------------------- /templates/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thammuio/ldap-passwd-webui/HEAD/templates/index.html --------------------------------------------------------------------------------