21 lines
359 B
Cheetah
21 lines
359 B
Cheetah
{{define "hello"}}
|
|
<!DOCTYPE html>
|
|
<html>
|
|
<head>
|
|
<meta charset="utf8">
|
|
<title>Empact</title>
|
|
<link rel="stylesheet" href="/static/hello.css">
|
|
</head>
|
|
<body>
|
|
|
|
<h1>Please Sign in with your GitHub account</h1>
|
|
<a href="/auth/signin">
|
|
<img src="/static/github_mark_120.png">
|
|
</a>
|
|
|
|
<script src="/static/hello.js"></script>
|
|
|
|
</body>
|
|
</html>
|
|
{{end}}
|