diff --git a/server/main.go b/server/main.go
index 402b32156c19962b5f6110a749eef2fa22b40208..bc460da5b1e625dfa9f530aba4151611d7349e90 100644
--- a/server/main.go
+++ b/server/main.go
@@ -138,7 +138,6 @@ func callbackHandler(a *appContext, w http.ResponseWriter, r *http.Request) (int
 	if a.authsession.Token.Expiry.Unix() <= 0 {
 		a.authsession.Token.Expiry = time.Now().Add(1 * time.Hour)
 	}
-	fmt.Println(a.authsession.Token)
 	a.setAuthCookie(w, r, a.authsession.Token)
 	http.Redirect(w, r, "/", http.StatusFound)
 	return http.StatusFound, nil
diff --git a/templates/token.html b/templates/token.html
index 8553c847384c96ea596b5f1f6ec319ab1884f88f..45131764bcd4c05991d9c1dbfc1a93cee162b171 100644
--- a/templates/token.html
+++ b/templates/token.html
@@ -18,7 +18,7 @@
         font-weight: bold;
         height: auto;
         margin: 12px 12px 12px 12px;
-        padding: 12px 12px 12px 12px;
+        padding: 24px 12px 12px 12px;
         resize: none;
         text-align: center;
         width: 960px;