Files
zwift-offline/cdn/static/web/launcher/upload.html
T
2020-10-30 21:57:31 -03:00

24 lines
622 B
HTML

<!doctype html5>
<html>
<head>
<title>zoffline Launcher</title>
<style>
a, a:visited { color: blue; }
</style>
</head>
<body>
<h1>zoffline Launcher</h1>
<h2>Logged in as {{ username }}</h2>
<p>{{ name }}</p>
<table border=0 cellpadding=5>
<tr><td>profile.bin</td><td>{{ profile }}</td></tr>
<tr><td>strava_token.txt</td><td>{{ token }}</td></tr>
</table>
<p>Upload file</p>
<form method="POST" action="/upload/{{ username }}/" enctype="multipart/form-data">
<p><input type="file" name="file"></p>
<p><input type="submit" value="Submit"></p>
</form>
</body>
</html>