aboutsummaryrefslogtreecommitdiff
path: root/cmd/web/index.go
diff options
context:
space:
mode:
Diffstat (limited to 'cmd/web/index.go')
-rw-r--r--cmd/web/index.go8
1 files changed, 8 insertions, 0 deletions
diff --git a/cmd/web/index.go b/cmd/web/index.go
index 59310c0..2eb3695 100644
--- a/cmd/web/index.go
+++ b/cmd/web/index.go
@@ -75,6 +75,13 @@ http://127.0.0.1:8899/install?uri=http://my-server-ip-or-hostname/download/My Ga
</p>
+Change library path
+<form action="/setLib" method="GET">
+ <input type="text" name="path" />
+ <input type="submit" value="Update">
+</form>
+
+
</body>
`))
)
@@ -93,4 +100,5 @@ func index(w http.ResponseWriter, r *http.Request) {
if err != nil {
Logger.Printf("While Rendering template: %s", err)
}
+ Logger.Printf("Client %s Index page", r.RemoteAddr)
}