Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 5 additions & 1 deletion main.go
Original file line number Diff line number Diff line change
Expand Up @@ -408,8 +408,12 @@ var template string = `<!DOCTYPE html>
<meta name="color-scheme" content="light dark" />
</head>
<body>
<p>Success. You may close this page and return to Git.</p>
<p>Success. You may close this page and return to Git. It will close automatically in 5 seconds.</p>
<p style="font-style: italic">&mdash;<a href="https://github.com/hickford/git-credential-oauth">git-credential-oauth</a> %s</p>
<script>
var timeout = 6;
setTimeout(function() { this.close(); }, timeout*1000);
</script>
</body>
</html>`

Expand Down