blob: 7deef04f1befacf84b7f6101dc10695f9157c458 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
|
@page "/Letterflixd"
<PageTitle>Netflix to Letterboxd converter</PageTitle>
<PageScript Src="./Components/Pages/Letterflixd.razor.js"/>
<main>
<p>Convert Netflix viewing history to a Letterboxd import file.</p>
<p>Download your viewing history from Netflix at <a href="https://www.netflix.com/settings/viewed/"
target="_blank">https://www.netflix.com/settings/viewed/</a></p>
<p>Import the resulting Letterboxd file at <a href="https://letterboxd.com/import/"
target="_blank">https://letterboxd.com/import/</a></p>
<form id="form">
<fieldset class="docs">
<div class="row">
<label for="netflix-file">
Netflix viewing history file:
<input id="netflix-file" type="file">
</label>
</div>
<div class="row">
<input type="submit" value="Convert">
</div>
</fieldset>
</form>
<Log/>
</main>
|