add ability to delete feed that belongs to a user
[rss-reader.git] / html / index.html
1 <!doctype html>
2 <html>
3   <head>
4     <title>News River</title>
5     <meta charset="utf-8">
6     <link rel="stylesheet" href="home.css">
7     <script src="https://unpkg.com/htmx.org@1.7.0"></script>
8     <base target="_blank">
9   </head>
10   <body>
11     <section>
12       <h1>Rss Reader</h1>
13       <p>This is the home page for a very simple RSS reader project by <a href="https://xangelo.ca">xangelo</a>.</p>
14       <p>I've been a long time fan of RSS and since the death of <a href="https://en.wikipedia.org/wiki/Google_Reader">Google Reader</a> I've found myself bouncing around from RSS reader to RSS reader trying to find something that really worked for me. I spent along time (many years) using a river-of-news style reader I wrote called, unsurprisingly, <a href="https://newsriver.xangelo.ca">NewsRiver</a>. I am definitely a big fan of this style of reader, but I wanted to get back to curating a list of blogs/authors that I enjoyed following.</p>
15       <p>I ended up writing my own RSS Reader and will be working over the next little while to merge the News River functionality in. I'm hoping this will be the final version of the app where I'm able to not just catch up on "news", but also a centralized space for me to keep up with blogs/articles.</p>
16       <p>If you're interested in RSS readers, feel free to sign up and poke around - I would definitely appreciate you letting me know of any bugs that you run in to.</p>
17       <p>I'm also a big fan of supporting user privacy - I'm not going to ask for any information more than your email as a way to keep track of the feeds that are associated wtih you. If at any point you want your account deleted, just let me know.</p>
18       <form hx-post="/login">
19         <label>Email: </label>
20         <input type="email" name="email"> <button class="btn" type="submit">Login</button>
21         <br>
22         <small>
23           This is a "Passwordless" system. You enter your email, and we email you a one-time login code that expires within 30 minutes.
24         </small>
25       </form>
26     </section>
27   </body>
28 </html>