Skip to content

Commit

Permalink
small fixes, need to add rick astley back in
Browse files Browse the repository at this point in the history
  • Loading branch information
posthogseb committed Aug 15, 2024
1 parent 29bf326 commit d022b62
Show file tree
Hide file tree
Showing 6 changed files with 56 additions and 38 deletions.
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -2,3 +2,4 @@
.env
instance
2d9bb48c9eb65f691a8395edc479ca1150874260
migration
1 change: 0 additions & 1 deletion app.py
Original file line number Diff line number Diff line change
Expand Up @@ -118,7 +118,6 @@ def login():
return render_template('login.html', form=form)



@app.route('/logout')
def logout():
if current_user.is_authenticated:
Expand Down
Original file line number Diff line number Diff line change
@@ -1,16 +1,16 @@
"""empty message
Revision ID: 5cc32ce01307
Revision ID: 3545ef4a1718
Revises:
Create Date: 2024-08-15 11:30:29.583049
Create Date: 2024-08-15 12:42:24.632516
"""
from alembic import op
import sqlalchemy as sa


# revision identifiers, used by Alembic.
revision = '5cc32ce01307'
revision = '3545ef4a1718'
down_revision = None
branch_labels = None
depends_on = None
Expand Down Expand Up @@ -41,6 +41,7 @@ def upgrade():
sa.Column('password_hash', sa.String(length=128), nullable=False),
sa.Column('plan', sa.String(length=50), nullable=False),
sa.Column('is_admin', sa.Boolean(), nullable=True),
sa.Column('is_adult', sa.Boolean(), nullable=True),
sa.PrimaryKeyConstraint('id'),
sa.UniqueConstraint('email'),
sa.UniqueConstraint('username')
Expand Down
32 changes: 0 additions & 32 deletions migrations/versions/7d07bc1af191_.py

This file was deleted.

Binary file not shown.
53 changes: 51 additions & 2 deletions templates/toc.html
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,55 @@
{% block content %}
<div class="container mt-5">
<h1>Terms and Conditions</h1>
<p>Your terms and conditions content goes here...</p>
<div class="terms-content">
<h3>🎬 Terms & Conditions of HOGFLIX 🎬</h3>
<p><strong>1. Binge Responsibly</strong><br>
Yes, we know you’re here to binge-watch 17 seasons of that show everyone’s talking about. Just remember: no blaming us when you emerge from your cave three days later, hungry, tired, and questioning your life choices. We warned you. 🍕☕️
</p>

<p><strong>2. Your Watchlist = Your Responsibility</strong><br>
That watchlist you’ve been curating like it’s the Louvre? We’re proud of you! Just don’t complain when you can’t decide what to watch and end up re-watching <i>The Office</i> for the 57th time. It’s on you. 🎨
</p>

<p><strong>3. Sharing is (Not Always) Caring</strong><br>
We’re all about community, but if your “friend” who’s using your account isn’t contributing to the pizza fund, it might be time for a tough conversation. Remember, freeloaders aren’t friends—they’re just people who need to get their own subscription. 🍕💸
</p>

<p><strong>4. Buffering…Is a State of Mind</strong><br>
On the rare occasion that your video buffers, take it as a sign from the universe to reflect on life, do some yoga, or maybe, just maybe, check your internet connection. It’s not us—it’s you. 🧘‍♂️🌐
</p>

<p><strong>5. Content Overload Disclaimer</strong><br>
We provide endless content. Seriously. But if you get overwhelmed by choices and end up watching cat videos on YouTube instead, well, that’s just the circle of life, my friend. 🐱📺
</p>

<p><strong>6. “Continue Watching?” Button Fatigue</strong><br>
If you’re sick of seeing “Continue Watching?” pop up, just remember: this is our polite way of checking if you’re still with us or if you’ve entered a food coma. No judgment. 🍿😴
</p>

<p><strong>7. Spoilers Will Not Be Tolerated</strong><br>
Spoiling the latest episode of <i>anything</i> is punishable by immediate and permanent excommunication from your friends' group chat. We don’t make the rules (okay, maybe we do). 🤐📵
</p>

<p><strong>8. Offline Viewing = Digital Hoarding</strong><br>
Downloading shows to watch offline is cool, but if your device turns into a hoarder’s paradise, don’t come crying to us when your storage is full. Spring cleaning isn’t just for closets. 📱📂
</p>

<p><strong>9. No Telepathic Content Requests</strong><br>
We’re good, but we can’t read your mind—yet. So if you’re wondering why that super obscure 90s show isn’t available, try typing it in the search bar instead of just thinking really hard about it. 🧠💭
</p>

<p><strong>10. You Can Cancel Anytime (But You Won’t)</strong><br>
Yes, you <i>can</i> cancel your subscription at any time. But let’s be real: you’re not going anywhere. We’ve got more seasons and cliffhangers than you have willpower. 🎣
</p>

<hr>

<p><strong>TL;DR:</strong><br>
Relax, enjoy, and binge responsibly. We’ve got you covered—until you run out of snacks.
</p>

<p>If you have any questions, we'll just pretend we didn’t hear them and point you to our incredibly helpful FAQ section. 📖🤷‍♀️</p>
</div>
</div>
{% endblock %}
{% endblock %}

0 comments on commit d022b62

Please sign in to comment.