mirror of
https://github.com/samsonjs/retrogit.git
synced 2026-04-24 14:37:40 +00:00
Not the final design (it'll instead be persisted to the App Engine data store, and the session will just have the user ID), but this has most of the scaffolding for session cookies.
15 lines
224 B
HTML
15 lines
224 B
HTML
<!DOCTYPE html>
|
|
<html>
|
|
<head>
|
|
<meta charset="utf-8">
|
|
<title>GitHop</title>
|
|
<link rel="stylesheet" href="/static/main.css">
|
|
</head>
|
|
<body>
|
|
<h1>GitHop!</h1>
|
|
|
|
<a href="{{.SignInUrl}}">
|
|
Sign In
|
|
</a>
|
|
</body>
|
|
</html>
|