forked from PeterSurda/inoreader2readwise
16 lines
238 B
Django/Jinja
16 lines
238 B
Django/Jinja
<html>
|
|
<head>
|
|
<title>Processing oauth2</title>
|
|
{%if login_success%}
|
|
<meta http-equiv="refresh" content="0; url="{%siteurl%}/">
|
|
{%endif%}
|
|
</head>
|
|
<body>
|
|
{%if login_success%}
|
|
Redirecting ...
|
|
{%else%}
|
|
Login failed.
|
|
{%endif%}
|
|
</body>
|
|
</html>
|