forked from PeterSurda/inoreader2readwise
29 lines
841 B
HTML
29 lines
841 B
HTML
|
<!DOCTYPE html>
|
||
|
<html lang="en">
|
||
|
<head>
|
||
|
<meta charset="UTF-8">
|
||
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
||
|
<title>Inoreader To Readwise</title>
|
||
|
</head>
|
||
|
<body>
|
||
|
<h1>Logged In as {{ user_info.login }}({{user_info.name}})</h1>
|
||
|
|
||
|
<!-- show last synced and next synced time -->
|
||
|
<p>Last Synced: {{ last_synced }}</p>
|
||
|
<p>Next Synced: {{ next_synced }}</p>
|
||
|
<br>
|
||
|
|
||
|
<!-- Take readiwse api key input -->
|
||
|
<form action="/readwise" method="POST">
|
||
|
<label for="api_key">Readwise API Key</label>
|
||
|
<input type="text" name="readwise_api_key" id="api_key", value="{{ readwise_api_key }}">
|
||
|
<input type="submit" value="Submit">
|
||
|
</form>
|
||
|
|
||
|
<!-- Logout -->
|
||
|
<form action="/logout" method="POST">
|
||
|
<input type="submit" value="Logout">
|
||
|
</form>
|
||
|
</body>
|
||
|
</html>
|