Migrate from Next.js to Flask: Complete motorcycle adventure community website

- Replace Next.js/React implementation with Python Flask
- Add colorful blue-purple-teal gradient theme replacing red design
- Integrate logo and Transalpina panoramic background image
- Implement complete authentication system with Flask-Login
- Add community features for stories and tracks sharing
- Create responsive design with Tailwind CSS
- Add error handling with custom 404/500 pages
- Include Docker deployment configuration
- Add favicon support and proper SEO structure
- Update content for Pensiune BuonGusto accommodation
- Remove deprecated Next.js files and dependencies

Features:
 Landing page with hero section and featured content
 User registration and login system
 Community section for adventure sharing
 Admin panel for content management
 Responsive mobile-first design
 Docker containerization with PostgreSQL
 Email integration with Flask-Mail
 Form validation with WTForms
 SQLAlchemy database models
 Error pages and favicon handling
This commit is contained in:
ske087
2025-07-23 14:42:40 +03:00
parent 282cd0dfcb
commit fc463dc69a
45 changed files with 1572 additions and 11044 deletions

60
app/__init__.py Normal file
View File

@@ -0,0 +1,60 @@
from flask import Flask
from flask_sqlalchemy import SQLAlchemy
from flask_migrate import Migrate
from flask_login import LoginManager
from flask_mail import Mail
from config import config
import os
db = SQLAlchemy()
migrate = Migrate()
login_manager = LoginManager()
mail = Mail()
def create_app(config_name=None):
app = Flask(__name__)
config_name = config_name or os.environ.get('FLASK_CONFIG') or 'default'
app.config.from_object(config[config_name])
# Initialize extensions
db.init_app(app)
migrate.init_app(app, db)
login_manager.init_app(app)
mail.init_app(app)
# Configure login manager
login_manager.login_view = 'auth.login'
login_manager.login_message = 'Please log in to access this page.'
login_manager.login_message_category = 'info'
@login_manager.user_loader
def load_user(user_id):
from app.models import User
return User.query.get(int(user_id))
# Import models
from app.models import User, Post, PostImage, GPXFile, Comment, Like
# Register blueprints
from app.routes.main import main
app.register_blueprint(main)
from app.routes.auth import auth
app.register_blueprint(auth, url_prefix='/auth')
from app.routes.community import community
app.register_blueprint(community, url_prefix='/community')
# Create upload directories
upload_dir = os.path.join(app.instance_path, 'uploads')
os.makedirs(upload_dir, exist_ok=True)
os.makedirs(os.path.join(upload_dir, 'images'), exist_ok=True)
os.makedirs(os.path.join(upload_dir, 'gpx'), exist_ok=True)
return app
@login_manager.user_loader
def load_user(user_id):
from app.models import User
return User.query.get(int(user_id))

54
app/forms.py Normal file
View File

@@ -0,0 +1,54 @@
from flask_wtf import FlaskForm
from wtforms import StringField, TextAreaField, PasswordField, BooleanField, SelectField, FileField, SubmitField
from wtforms.validators import DataRequired, Email, Length, EqualTo, NumberRange
from flask_wtf.file import FileAllowed, FileRequired
class LoginForm(FlaskForm):
email = StringField('Email', validators=[DataRequired(), Email()],
render_kw={"placeholder": "Enter your email"})
password = PasswordField('Password', validators=[DataRequired()],
render_kw={"placeholder": "Enter your password"})
remember_me = BooleanField('Remember Me')
submit = SubmitField('Sign In')
class RegisterForm(FlaskForm):
nickname = StringField('Nickname', validators=[DataRequired(), Length(min=3, max=20)],
render_kw={"placeholder": "Choose a nickname"})
email = StringField('Email', validators=[DataRequired(), Email()],
render_kw={"placeholder": "Enter your email"})
password = PasswordField('Password', validators=[DataRequired(), Length(min=8)],
render_kw={"placeholder": "Create a password"})
password2 = PasswordField('Confirm Password',
validators=[DataRequired(), EqualTo('password')],
render_kw={"placeholder": "Confirm your password"})
submit = SubmitField('Register')
class ForgotPasswordForm(FlaskForm):
email = StringField('Email', validators=[DataRequired(), Email()],
render_kw={"placeholder": "Enter your email"})
submit = SubmitField('Reset Password')
class PostForm(FlaskForm):
title = StringField('Title', validators=[DataRequired(), Length(min=5, max=200)],
render_kw={"placeholder": "Give your adventure a catchy title"})
subtitle = StringField('Subtitle', validators=[Length(max=300)],
render_kw={"placeholder": "A brief description (optional)"})
content = TextAreaField('Content', validators=[DataRequired(), Length(min=50)],
render_kw={"placeholder": "Tell us about your adventure...", "rows": 10})
difficulty = SelectField('Difficulty',
choices=[('1', 'Very Easy'), ('2', 'Easy'), ('3', 'Moderate'),
('4', 'Hard'), ('5', 'Very Hard')],
validators=[DataRequired()], default='3')
images = FileField('Photos',
validators=[FileAllowed(['jpg', 'jpeg', 'png', 'gif'], 'Images only!')],
render_kw={"multiple": True, "accept": "image/*"})
gpx_file = FileField('GPX Track',
validators=[FileAllowed(['gpx'], 'GPX files only!')],
render_kw={"accept": ".gpx"})
published = BooleanField('Publish immediately', default=True)
submit = SubmitField('Create Post')
class CommentForm(FlaskForm):
content = TextAreaField('Comment', validators=[DataRequired(), Length(min=10, max=1000)],
render_kw={"placeholder": "Share your thoughts...", "rows": 3})
submit = SubmitField('Post Comment')

126
app/models.py Normal file
View File

@@ -0,0 +1,126 @@
from datetime import datetime
from flask_sqlalchemy import SQLAlchemy
from flask_login import UserMixin
from werkzeug.security import generate_password_hash, check_password_hash
db = SQLAlchemy()
class User(UserMixin, db.Model):
__tablename__ = 'users'
id = db.Column(db.Integer, primary_key=True)
nickname = db.Column(db.String(80), unique=True, nullable=False)
email = db.Column(db.String(120), unique=True, nullable=False)
password_hash = db.Column(db.String(255), nullable=False)
is_active = db.Column(db.Boolean, default=True, nullable=False)
is_admin = db.Column(db.Boolean, default=False, nullable=False)
created_at = db.Column(db.DateTime, default=datetime.utcnow)
updated_at = db.Column(db.DateTime, default=datetime.utcnow, onupdate=datetime.utcnow)
# Relationships
posts = db.relationship('Post', backref='author', lazy='dynamic', cascade='all, delete-orphan')
comments = db.relationship('Comment', backref='author', lazy='dynamic', cascade='all, delete-orphan')
likes = db.relationship('Like', backref='user', lazy='dynamic', cascade='all, delete-orphan')
def set_password(self, password):
self.password_hash = generate_password_hash(password)
def check_password(self, password):
return check_password_hash(self.password_hash, password)
def __repr__(self):
return f'<User {self.nickname}>'
class Post(db.Model):
__tablename__ = 'posts'
id = db.Column(db.Integer, primary_key=True)
title = db.Column(db.String(200), nullable=False)
subtitle = db.Column(db.String(300))
content = db.Column(db.Text, nullable=False)
difficulty = db.Column(db.Integer, default=3, nullable=False) # 1-5 scale
published = db.Column(db.Boolean, default=False, nullable=False)
created_at = db.Column(db.DateTime, default=datetime.utcnow)
updated_at = db.Column(db.DateTime, default=datetime.utcnow, onupdate=datetime.utcnow)
# Foreign Keys
author_id = db.Column(db.Integer, db.ForeignKey('users.id'), nullable=False)
# Relationships
images = db.relationship('PostImage', backref='post', lazy='dynamic', cascade='all, delete-orphan')
gpx_files = db.relationship('GPXFile', backref='post', lazy='dynamic', cascade='all, delete-orphan')
comments = db.relationship('Comment', backref='post', lazy='dynamic', cascade='all, delete-orphan')
likes = db.relationship('Like', backref='post', lazy='dynamic', cascade='all, delete-orphan')
def get_difficulty_label(self):
labels = ['Very Easy', 'Easy', 'Moderate', 'Hard', 'Very Hard']
return labels[self.difficulty - 1] if 1 <= self.difficulty <= 5 else 'Unknown'
def get_like_count(self):
return self.likes.count()
def __repr__(self):
return f'<Post {self.title}>'
class PostImage(db.Model):
__tablename__ = 'post_images'
id = db.Column(db.Integer, primary_key=True)
filename = db.Column(db.String(255), nullable=False)
original_name = db.Column(db.String(255), nullable=False)
description = db.Column(db.Text)
size = db.Column(db.Integer, nullable=False)
mime_type = db.Column(db.String(100), nullable=False)
created_at = db.Column(db.DateTime, default=datetime.utcnow)
# Foreign Keys
post_id = db.Column(db.Integer, db.ForeignKey('posts.id'), nullable=False)
def __repr__(self):
return f'<PostImage {self.filename}>'
class GPXFile(db.Model):
__tablename__ = 'gpx_files'
id = db.Column(db.Integer, primary_key=True)
filename = db.Column(db.String(255), nullable=False)
original_name = db.Column(db.String(255), nullable=False)
size = db.Column(db.Integer, nullable=False)
created_at = db.Column(db.DateTime, default=datetime.utcnow)
# Foreign Keys
post_id = db.Column(db.Integer, db.ForeignKey('posts.id'), nullable=False)
def __repr__(self):
return f'<GPXFile {self.filename}>'
class Comment(db.Model):
__tablename__ = 'comments'
id = db.Column(db.Integer, primary_key=True)
content = db.Column(db.Text, nullable=False)
created_at = db.Column(db.DateTime, default=datetime.utcnow)
updated_at = db.Column(db.DateTime, default=datetime.utcnow, onupdate=datetime.utcnow)
# Foreign Keys
author_id = db.Column(db.Integer, db.ForeignKey('users.id'), nullable=False)
post_id = db.Column(db.Integer, db.ForeignKey('posts.id'), nullable=False)
def __repr__(self):
return f'<Comment {self.id}>'
class Like(db.Model):
__tablename__ = 'likes'
id = db.Column(db.Integer, primary_key=True)
created_at = db.Column(db.DateTime, default=datetime.utcnow)
# Foreign Keys
user_id = db.Column(db.Integer, db.ForeignKey('users.id'), nullable=False)
post_id = db.Column(db.Integer, db.ForeignKey('posts.id'), nullable=False)
# Unique constraint
__table_args__ = (db.UniqueConstraint('user_id', 'post_id', name='unique_user_post_like'),)
def __repr__(self):
return f'<Like {self.user_id}-{self.post_id}>'

106
app/routes/auth.py Normal file
View File

@@ -0,0 +1,106 @@
from flask import Blueprint, render_template, request, redirect, url_for, flash
from flask_login import login_user, logout_user, login_required, current_user
from werkzeug.security import check_password_hash
from app.models import User, db
from app.forms import LoginForm, RegisterForm, ForgotPasswordForm
import re
auth = Blueprint('auth', __name__)
@auth.route('/login', methods=['GET', 'POST'])
def login():
"""User login page"""
if current_user.is_authenticated:
return redirect(url_for('main.index'))
form = LoginForm()
if form.validate_on_submit():
user = User.query.filter_by(email=form.email.data).first()
if user and user.check_password(form.password.data):
login_user(user, remember=form.remember_me.data)
next_page = request.args.get('next')
if not next_page or not next_page.startswith('/'):
next_page = url_for('community.index')
flash(f'Welcome back, {user.nickname}!', 'success')
return redirect(next_page)
else:
flash('Invalid email or password.', 'error')
return render_template('auth/login.html', form=form)
@auth.route('/register', methods=['GET', 'POST'])
def register():
"""User registration page"""
if current_user.is_authenticated:
return redirect(url_for('main.index'))
form = RegisterForm()
if form.validate_on_submit():
# Check if user already exists
if User.query.filter_by(email=form.email.data).first():
flash('Email address already registered.', 'error')
return render_template('auth/register.html', form=form)
if User.query.filter_by(nickname=form.nickname.data).first():
flash('Nickname already taken.', 'error')
return render_template('auth/register.html', form=form)
# Validate password strength
if not is_valid_password(form.password.data):
flash('Password must be at least 8 characters long and contain at least one letter and one number.', 'error')
return render_template('auth/register.html', form=form)
# Create new user
user = User(
nickname=form.nickname.data,
email=form.email.data
)
user.set_password(form.password.data)
try:
db.session.add(user)
db.session.commit()
flash('Registration successful! You can now log in.', 'success')
return redirect(url_for('auth.login'))
except Exception as e:
db.session.rollback()
flash('An error occurred during registration. Please try again.', 'error')
return render_template('auth/register.html', form=form)
@auth.route('/logout')
@login_required
def logout():
"""User logout"""
logout_user()
flash('You have been logged out.', 'info')
return redirect(url_for('main.index'))
@auth.route('/forgot-password', methods=['GET', 'POST'])
def forgot_password():
"""Forgot password page"""
if current_user.is_authenticated:
return redirect(url_for('main.index'))
form = ForgotPasswordForm()
if form.validate_on_submit():
user = User.query.filter_by(email=form.email.data).first()
if user:
# TODO: Implement email sending for password reset
flash('If an account with that email exists, we\'ve sent password reset instructions.', 'info')
else:
flash('If an account with that email exists, we\'ve sent password reset instructions.', 'info')
return redirect(url_for('auth.login'))
return render_template('auth/forgot_password.html', form=form)
def is_valid_password(password):
"""Validate password strength"""
if len(password) < 8:
return False
if not re.search(r'[A-Za-z]', password):
return False
if not re.search(r'\d', password):
return False
return True

195
app/routes/community.py Normal file
View File

@@ -0,0 +1,195 @@
from flask import Blueprint, render_template, request, redirect, url_for, flash, current_app, jsonify
from flask_login import login_required, current_user
from app.models import Post, PostImage, GPXFile, User, Comment, Like, db
from app.forms import PostForm, CommentForm
from werkzeug.utils import secure_filename
from werkzeug.exceptions import RequestEntityTooLarge
import os
import uuid
from datetime import datetime
from PIL import Image
import gpxpy
community = Blueprint('community', __name__)
@community.route('/')
def index():
"""Community posts listing page"""
page = request.args.get('page', 1, type=int)
posts = Post.query.filter_by(published=True).order_by(Post.created_at.desc()).paginate(
page=page, per_page=10, error_out=False
)
return render_template('community/index.html', posts=posts)
@community.route('/post/<int:id>')
def post_detail(id):
"""Individual post detail page"""
post = Post.query.get_or_404(id)
if not post.published and (not current_user.is_authenticated or
(current_user.id != post.author_id and not current_user.is_admin)):
flash('Post not found.', 'error')
return redirect(url_for('community.index'))
form = CommentForm()
comments = Comment.query.filter_by(post_id=id).order_by(Comment.created_at.asc()).all()
return render_template('community/post_detail.html', post=post, form=form, comments=comments)
@community.route('/new-post', methods=['GET', 'POST'])
@login_required
def new_post():
"""Create new post page"""
form = PostForm()
if form.validate_on_submit():
try:
# Create post
post = Post(
title=form.title.data,
subtitle=form.subtitle.data,
content=form.content.data,
difficulty=int(form.difficulty.data),
published=form.published.data,
author_id=current_user.id
)
db.session.add(post)
db.session.flush() # Get the post ID
# Handle image uploads
if form.images.data and form.images.data.filename:
images = request.files.getlist('images')
for image_file in images:
if image_file and image_file.filename:
result = save_image(image_file, post.id)
if result['success']:
post_image = PostImage(
filename=result['filename'],
original_name=image_file.filename,
size=result['size'],
mime_type=image_file.content_type,
post_id=post.id
)
db.session.add(post_image)
# Handle GPX file upload
if form.gpx_file.data and form.gpx_file.data.filename:
result = save_gpx_file(form.gpx_file.data, post.id)
if result['success']:
gpx_file = GPXFile(
filename=result['filename'],
original_name=form.gpx_file.data.filename,
size=result['size'],
post_id=post.id
)
db.session.add(gpx_file)
db.session.commit()
flash('Your adventure has been shared!', 'success')
return redirect(url_for('community.post_detail', id=post.id))
except Exception as e:
db.session.rollback()
flash('An error occurred while creating your post. Please try again.', 'error')
current_app.logger.error(f'Error creating post: {str(e)}')
return render_template('community/new_post.html', form=form)
@community.route('/post/<int:id>/comment', methods=['POST'])
@login_required
def add_comment(id):
"""Add comment to post"""
post = Post.query.get_or_404(id)
form = CommentForm()
if form.validate_on_submit():
comment = Comment(
content=form.content.data,
author_id=current_user.id,
post_id=post.id
)
db.session.add(comment)
db.session.commit()
flash('Your comment has been added.', 'success')
return redirect(url_for('community.post_detail', id=id))
@community.route('/post/<int:id>/like', methods=['POST'])
@login_required
def toggle_like(id):
"""Toggle like on post"""
post = Post.query.get_or_404(id)
existing_like = Like.query.filter_by(user_id=current_user.id, post_id=post.id).first()
if existing_like:
db.session.delete(existing_like)
liked = False
else:
like = Like(user_id=current_user.id, post_id=post.id)
db.session.add(like)
liked = True
db.session.commit()
return jsonify({'liked': liked, 'count': post.get_like_count()})
def save_image(image_file, post_id):
"""Save uploaded image file"""
try:
# Create upload directory
upload_dir = os.path.join(current_app.instance_path, 'uploads', 'images')
os.makedirs(upload_dir, exist_ok=True)
# Generate unique filename
filename = secure_filename(f"{uuid.uuid4().hex}_{image_file.filename}")
filepath = os.path.join(upload_dir, filename)
# Save and resize image
image = Image.open(image_file)
if image.mode in ('RGBA', 'LA', 'P'):
image = image.convert('RGB')
# Resize if too large
max_size = (1920, 1080)
image.thumbnail(max_size, Image.Resampling.LANCZOS)
image.save(filepath, 'JPEG', quality=85, optimize=True)
file_size = os.path.getsize(filepath)
return {
'success': True,
'filename': filename,
'size': file_size
}
except Exception as e:
current_app.logger.error(f'Error saving image: {str(e)}')
return {'success': False, 'error': str(e)}
def save_gpx_file(gpx_file, post_id):
"""Save uploaded GPX file"""
try:
# Create upload directory
upload_dir = os.path.join(current_app.instance_path, 'uploads', 'gpx')
os.makedirs(upload_dir, exist_ok=True)
# Generate unique filename
filename = secure_filename(f"{uuid.uuid4().hex}_{gpx_file.filename}")
filepath = os.path.join(upload_dir, filename)
# Validate GPX file
gpx_content = gpx_file.read()
gpx = gpxpy.parse(gpx_content.decode('utf-8'))
# Save file
with open(filepath, 'wb') as f:
f.write(gpx_content)
file_size = len(gpx_content)
return {
'success': True,
'filename': filename,
'size': file_size
}
except Exception as e:
current_app.logger.error(f'Error saving GPX file: {str(e)}')
return {'success': False, 'error': str(e)}

39
app/routes/main.py Normal file
View File

@@ -0,0 +1,39 @@
from flask import Blueprint, render_template, request, redirect, url_for, flash
from flask_login import login_required, current_user
from app.models import Post, PostImage, GPXFile, User, db
from werkzeug.utils import secure_filename
from werkzeug.exceptions import RequestEntityTooLarge
import os
import uuid
from datetime import datetime
main = Blueprint('main', __name__)
@main.route('/')
def index():
"""Landing page with about, accommodation, and community sections"""
return render_template('index.html')
@main.route('/favicon.ico')
def favicon():
"""Serve favicon"""
return redirect(url_for('static', filename='favicon.ico'))
@main.route('/health')
def health_check():
"""Health check endpoint"""
return {'status': 'healthy', 'timestamp': datetime.utcnow().isoformat()}
@main.app_errorhandler(404)
def not_found_error(error):
return render_template('errors/404.html'), 404
@main.app_errorhandler(500)
def internal_error(error):
db.session.rollback()
return render_template('errors/500.html'), 500
@main.app_errorhandler(RequestEntityTooLarge)
def file_too_large(error):
flash('File is too large. Maximum file size is 16MB.', 'error')
return redirect(request.url)

BIN
app/static/favicon.ico Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 602 KiB

BIN
app/static/images/logo.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 602 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 18 MiB

1
app/templates/README.md Normal file
View File

@@ -0,0 +1 @@
# Create templates directory structure

View File

@@ -0,0 +1,66 @@
{% extends "base.html" %}
{% block title %}Sign In - Moto Adventure{% endblock %}
{% block content %}
<div class="min-h-screen bg-gray-50 py-20">
<div class="max-w-md mx-auto bg-white rounded-lg shadow-lg overflow-hidden">
<div class="bg-gradient-to-r from-blue-500 via-purple-500 to-teal-500 p-6 text-white text-center">
<h2 class="text-2xl font-bold">
<img src="{{ url_for('static', filename='images/logo.png') }}" alt="Moto Adventure" class="h-8 w-8 inline mr-2">
Welcome Back
</h2>
<p class="text-blue-100 mt-1">Sign in to your account</p>
</div>
<form method="POST" class="p-6 space-y-6">
{{ form.hidden_tag() }}
<div>
{{ form.email.label(class="block text-sm font-medium text-gray-700 mb-1") }}
{{ form.email(class="w-full px-3 py-2 border border-gray-300 rounded-lg focus:outline-none focus:ring-2 focus:ring-blue-500 focus:border-transparent") }}
{% if form.email.errors %}
<div class="text-red-500 text-sm mt-1">
{% for error in form.email.errors %}
<p>{{ error }}</p>
{% endfor %}
</div>
{% endif %}
</div>
<div>
{{ form.password.label(class="block text-sm font-medium text-gray-700 mb-1") }}
{{ form.password(class="w-full px-3 py-2 border border-gray-300 rounded-lg focus:outline-none focus:ring-2 focus:ring-purple-500 focus:border-transparent") }}
{% if form.password.errors %}
<div class="text-red-500 text-sm mt-1">
{% for error in form.password.errors %}
<p>{{ error }}</p>
{% endfor %}
</div>
{% endif %}
</div>
<div class="flex items-center justify-between">
<div class="flex items-center">
{{ form.remember_me(class="h-4 w-4 text-blue-600 focus:ring-blue-500 border-gray-300 rounded") }}
{{ form.remember_me.label(class="ml-2 block text-sm text-gray-700") }}
</div>
<a href="{{ url_for('auth.forgot_password') }}" class="text-sm text-purple-600 hover:text-purple-700">
Forgot password?
</a>
</div>
{{ form.submit(class="w-full bg-gradient-to-r from-blue-600 to-purple-600 text-white py-2 px-4 rounded-lg hover:from-blue-700 hover:to-purple-700 focus:outline-none focus:ring-2 focus:ring-blue-500 focus:ring-offset-2 transition font-medium") }}
</form>
<div class="px-6 pb-6 text-center">
<p class="text-gray-600">
Don't have an account?
<a href="{{ url_for('auth.register') }}" class="text-blue-600 hover:text-blue-700 font-medium">
Sign up here
</a>
</p>
</div>
</div>
</div>
{% endblock %}

View File

@@ -0,0 +1,83 @@
{% extends "base.html" %}
{% block title %}Join Community - Moto Adventure{% endblock %}
{% block content %}
<div class="min-h-screen bg-gray-50 py-20">
<div class="max-w-md mx-auto bg-white rounded-lg shadow-lg overflow-hidden">
<div class="bg-gradient-to-r from-emerald-500 via-cyan-500 to-blue-500 p-6 text-white text-center">
<h2 class="text-2xl font-bold">
<img src="{{ url_for('static', filename='images/logo.png') }}" alt="Moto Adventure" class="h-8 w-8 inline mr-2">
Join the Adventure
</h2>
<p class="text-cyan-100 mt-1">Create your account</p>
</div>
<form method="POST" class="p-6 space-y-6">
{{ form.hidden_tag() }}
<div>
{{ form.nickname.label(class="block text-sm font-medium text-gray-700 mb-1") }}
{{ form.nickname(class="w-full px-3 py-2 border border-gray-300 rounded-lg focus:outline-none focus:ring-2 focus:ring-orange-500 focus:border-transparent") }}
{% if form.nickname.errors %}
<div class="text-red-500 text-sm mt-1">
{% for error in form.nickname.errors %}
<p>{{ error }}</p>
{% endfor %}
</div>
{% endif %}
</div>
<div>
{{ form.email.label(class="block text-sm font-medium text-gray-700 mb-1") }}
{{ form.email(class="w-full px-3 py-2 border border-gray-300 rounded-lg focus:outline-none focus:ring-2 focus:ring-orange-500 focus:border-transparent") }}
{% if form.email.errors %}
<div class="text-red-500 text-sm mt-1">
{% for error in form.email.errors %}
<p>{{ error }}</p>
{% endfor %}
</div>
{% endif %}
</div>
<div>
{{ form.password.label(class="block text-sm font-medium text-gray-700 mb-1") }}
{{ form.password(class="w-full px-3 py-2 border border-gray-300 rounded-lg focus:outline-none focus:ring-2 focus:ring-orange-500 focus:border-transparent") }}
{% if form.password.errors %}
<div class="text-red-500 text-sm mt-1">
{% for error in form.password.errors %}
<p>{{ error }}</p>
{% endfor %}
</div>
{% endif %}
<p class="text-xs text-gray-500 mt-1">
At least 8 characters with letters and numbers
</p>
</div>
<div>
{{ form.password2.label(class="block text-sm font-medium text-gray-700 mb-1") }}
{{ form.password2(class="w-full px-3 py-2 border border-gray-300 rounded-lg focus:outline-none focus:ring-2 focus:ring-orange-500 focus:border-transparent") }}
{% if form.password2.errors %}
<div class="text-red-500 text-sm mt-1">
{% for error in form.password2.errors %}
<p>{{ error }}</p>
{% endfor %}
</div>
{% endif %}
</div>
{{ form.submit(class="w-full bg-orange-600 text-white py-2 px-4 rounded-lg hover:bg-orange-700 focus:outline-none focus:ring-2 focus:ring-orange-500 focus:ring-offset-2 transition font-medium") }}
</form>
<div class="px-6 pb-6 text-center">
<p class="text-gray-600">
Already have an account?
<a href="{{ url_for('auth.login') }}" class="text-orange-600 hover:text-orange-700 font-medium">
Sign in here
</a>
</p>
</div>
</div>
</div>
{% endblock %}

173
app/templates/base.html Normal file
View File

@@ -0,0 +1,173 @@
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>{% block title %}Moto Adventure Community{% endblock %}</title>
<link rel="icon" type="image/x-icon" href="{{ url_for('static', filename='favicon.ico') }}">
<script src="https://cdn.tailwindcss.com"></script>
<link rel="stylesheet" href="https://unpkg.com/leaflet@1.9.4/dist/leaflet.css" />
<script src="https://unpkg.com/leaflet@1.9.4/dist/leaflet.js"></script>
<link href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.0.0/css/all.min.css" rel="stylesheet">
</head>
<body class="bg-gray-50">
<!-- Navigation -->
<nav class="bg-gradient-to-r from-blue-600 via-purple-600 to-teal-600 shadow-lg fixed w-full z-50">
<div class="max-w-7xl mx-auto px-4 sm:px-6 lg:px-8">
<div class="flex justify-between h-16">
<div class="flex items-center">
<a href="{{ url_for('main.index') }}" class="text-white text-xl font-bold flex items-center">
<img src="{{ url_for('static', filename='images/logo.png') }}" alt="Moto Adventure" class="h-8 w-8 mr-2">
Moto Adventure
</a>
</div>
<div class="hidden md:flex items-center space-x-8">
<a href="{{ url_for('main.index') }}#about" class="text-white hover:text-blue-200 transition">About</a>
<a href="{{ url_for('main.index') }}#accommodation" class="text-white hover:text-purple-200 transition">Accommodation</a>
<a href="{{ url_for('community.index') }}" class="text-white hover:text-teal-200 transition">Stories & Tracks</a>
{% if current_user.is_authenticated %}
<a href="{{ url_for('community.new_post') }}" class="bg-gradient-to-r from-green-500 to-emerald-500 text-white px-4 py-2 rounded-lg hover:from-green-400 hover:to-emerald-400 transition transform hover:scale-105">
<i class="fas fa-plus mr-2"></i>New Post
</a>
{% if current_user.is_admin %}
<a href="{{ url_for('admin.dashboard') }}" class="text-white hover:text-yellow-200 transition">
<i class="fas fa-cog mr-1"></i>Admin
</a>
{% endif %}
<a href="{{ url_for('auth.logout') }}" class="text-white hover:text-red-200 transition">
<i class="fas fa-sign-out-alt mr-1"></i>Logout
</a>
{% else %}
<a href="{{ url_for('auth.login') }}" class="text-white hover:text-blue-200 transition">Login</a>
<a href="{{ url_for('auth.register') }}" class="bg-gradient-to-r from-green-500 to-emerald-500 text-white px-4 py-2 rounded-lg hover:from-green-400 hover:to-emerald-400 transition transform hover:scale-105">Register</a>
{% endif %}
</div>
<!-- Mobile menu button -->
<div class="md:hidden flex items-center">
<button type="button" class="text-white hover:text-orange-200 focus:outline-none focus:text-orange-200" id="mobile-menu-btn">
<i class="fas fa-bars text-xl"></i>
</button>
</div>
</div>
</div>
<!-- Mobile menu -->
<div class="md:hidden bg-gradient-to-r from-blue-700 via-purple-700 to-teal-700 hidden" id="mobile-menu">
<div class="px-2 pt-2 pb-3 space-y-1">
<a href="{{ url_for('main.index') }}#about" class="text-white block px-3 py-2 hover:bg-blue-600 rounded">About</a>
<a href="{{ url_for('main.index') }}#accommodation" class="text-white block px-3 py-2 hover:bg-purple-600 rounded">Accommodation</a>
<a href="{{ url_for('community.index') }}" class="text-white block px-3 py-2 hover:bg-teal-600 rounded">Stories & Tracks</a>
{% if current_user.is_authenticated %}
<a href="{{ url_for('community.new_post') }}" class="text-white block px-3 py-2 hover:bg-green-600 rounded">
<i class="fas fa-plus mr-2"></i>New Post
</a>
{% if current_user.is_admin %}
<a href="{{ url_for('admin.dashboard') }}" class="text-white block px-3 py-2 hover:bg-yellow-600 rounded">
<i class="fas fa-cog mr-1"></i>Admin
</a>
{% endif %}
<a href="{{ url_for('auth.logout') }}" class="text-white block px-3 py-2 hover:bg-red-600 rounded">
<i class="fas fa-sign-out-alt mr-1"></i>Logout
</a>
{% else %}
<a href="{{ url_for('auth.login') }}" class="text-white block px-3 py-2 hover:bg-blue-600 rounded">Login</a>
<a href="{{ url_for('auth.register') }}" class="text-white block px-3 py-2 hover:bg-green-600 rounded">Register</a>
{% endif %}
</div>
</div>
</nav>
<!-- Flash Messages -->
{% with messages = get_flashed_messages(with_categories=true) %}
{% if messages %}
<div class="fixed top-20 right-4 z-50 space-y-2">
{% for category, message in messages %}
<div class="alert alert-{{ category }} px-4 py-3 rounded-lg shadow-lg max-w-sm
{% if category == 'error' %}bg-red-500 text-white
{% elif category == 'success' %}bg-green-500 text-white
{% elif category == 'warning' %}bg-yellow-500 text-white
{% else %}bg-blue-500 text-white
{% endif %}">
<div class="flex justify-between items-center">
<span>{{ message }}</span>
<button type="button" class="ml-2 text-white hover:text-gray-200" onclick="this.parentElement.parentElement.style.display='none'">
<i class="fas fa-times"></i>
</button>
</div>
</div>
{% endfor %}
</div>
{% endif %}
{% endwith %}
<!-- Main Content -->
<main class="pt-16">
{% block content %}{% endblock %}
</main>
<!-- Footer -->
<footer class="bg-gray-800 text-white py-12">
<div class="max-w-7xl mx-auto px-4 sm:px-6 lg:px-8">
<div class="grid grid-cols-1 md:grid-cols-3 gap-8">
<div>
<h3 class="text-xl font-bold mb-4">
<i class="fas fa-motorcycle mr-2"></i>Moto Adventure
</h3>
<p class="text-gray-300">
Join our community of motorcycle enthusiasts exploring the beautiful landscapes of Romania and beyond.
</p>
</div>
<div>
<h4 class="text-lg font-semibold mb-4">Quick Links</h4>
<ul class="space-y-2">
<li><a href="{{ url_for('main.index') }}#about" class="text-gray-300 hover:text-white transition">About</a></li>
<li><a href="{{ url_for('main.index') }}#accommodation" class="text-gray-300 hover:text-white transition">Accommodation</a></li>
<li><a href="{{ url_for('community.index') }}" class="text-gray-300 hover:text-white transition">Stories & Tracks</a></li>
</ul>
</div>
<div>
<h4 class="text-lg font-semibold mb-4">Contact</h4>
<div class="space-y-2 text-gray-300">
<p><i class="fas fa-map-marker-alt mr-2"></i>Pensiunea Buongusto, Romania</p>
<p><i class="fas fa-envelope mr-2"></i>info@moto-adv.com</p>
<p><i class="fas fa-phone mr-2"></i>+40 123 456 789</p>
</div>
</div>
</div>
<div class="border-t border-gray-700 mt-8 pt-8 text-center text-gray-300">
<p>&copy; 2024 Moto Adventure Community. All rights reserved.</p>
</div>
</div>
</footer>
<script>
// Mobile menu toggle
document.getElementById('mobile-menu-btn').addEventListener('click', function() {
const mobileMenu = document.getElementById('mobile-menu');
mobileMenu.classList.toggle('hidden');
});
// Auto-hide flash messages after 5 seconds
setTimeout(function() {
const alerts = document.querySelectorAll('.alert');
alerts.forEach(function(alert) {
alert.style.display = 'none';
});
}, 5000);
// Smooth scrolling for anchor links
document.querySelectorAll('a[href^="#"]').forEach(anchor => {
anchor.addEventListener('click', function (e) {
e.preventDefault();
const target = document.querySelector(this.getAttribute('href'));
if (target) {
target.scrollIntoView({
behavior: 'smooth',
block: 'start'
});
}
});
});
</script>
</body>
</html>

View File

@@ -0,0 +1,35 @@
{% extends "base.html" %}
{% block title %}Page Not Found - Moto Adventure{% endblock %}
{% block content %}
<div class="min-h-screen bg-gray-50 py-20">
<div class="max-w-2xl mx-auto text-center">
<div class="bg-white rounded-lg shadow-lg p-8">
<div class="mb-6">
<i class="fas fa-exclamation-triangle text-yellow-500 text-6xl mb-4"></i>
<h1 class="text-4xl font-bold text-gray-900 mb-2">404 - Page Not Found</h1>
<p class="text-xl text-gray-600">
Oops! The page you're looking for seems to have taken a detour.
</p>
</div>
<div class="bg-gradient-to-r from-blue-50 to-purple-50 rounded-lg p-6 mb-6">
<p class="text-gray-700 mb-4">
Don't worry, every great adventure has its unexpected turns!
Let's get you back on the right path.
</p>
</div>
<div class="flex flex-col sm:flex-row gap-4 justify-center">
<a href="{{ url_for('main.index') }}" class="bg-gradient-to-r from-blue-600 to-purple-600 text-white px-6 py-3 rounded-lg font-semibold hover:from-blue-700 hover:to-purple-700 transition transform hover:scale-105">
<i class="fas fa-home mr-2"></i>Back to Home
</a>
<a href="{{ url_for('community.index') }}" class="border-2 border-blue-600 text-blue-600 px-6 py-3 rounded-lg font-semibold hover:bg-blue-600 hover:text-white transition transform hover:scale-105">
<i class="fas fa-users mr-2"></i>Browse Community
</a>
</div>
</div>
</div>
</div>
{% endblock %}

View File

@@ -0,0 +1,35 @@
{% extends "base.html" %}
{% block title %}Server Error - Moto Adventure{% endblock %}
{% block content %}
<div class="min-h-screen bg-gray-50 py-20">
<div class="max-w-2xl mx-auto text-center">
<div class="bg-white rounded-lg shadow-lg p-8">
<div class="mb-6">
<i class="fas fa-tools text-red-500 text-6xl mb-4"></i>
<h1 class="text-4xl font-bold text-gray-900 mb-2">500 - Server Error</h1>
<p class="text-xl text-gray-600">
Something went wrong on our end. We're working to fix it!
</p>
</div>
<div class="bg-gradient-to-r from-red-50 to-orange-50 rounded-lg p-6 mb-6">
<p class="text-gray-700 mb-4">
Our technical team has been notified and is working to resolve the issue.
Please try again in a few moments.
</p>
</div>
<div class="flex flex-col sm:flex-row gap-4 justify-center">
<a href="{{ url_for('main.index') }}" class="bg-gradient-to-r from-blue-600 to-purple-600 text-white px-6 py-3 rounded-lg font-semibold hover:from-blue-700 hover:to-purple-700 transition transform hover:scale-105">
<i class="fas fa-home mr-2"></i>Back to Home
</a>
<button onclick="window.location.reload()" class="border-2 border-blue-600 text-blue-600 px-6 py-3 rounded-lg font-semibold hover:bg-blue-600 hover:text-white transition transform hover:scale-105">
<i class="fas fa-redo mr-2"></i>Try Again
</button>
</div>
</div>
</div>
</div>
{% endblock %}

275
app/templates/index.html Normal file
View File

@@ -0,0 +1,275 @@
{% extends "base.html" %}
{% block title %}Moto Adventure Community - Explore Romania on Two Wheels{% endblock %}
{% block content %}
<!-- Hero Section -->
<section class="relative bg-gradient-to-br from-blue-600 via-purple-600 to-teal-600 text-white py-24" style="background-image: url('{{ url_for('static', filename='images/pano transalpina.jpg') }}'); background-size: cover; background-position: center; background-blend-mode: overlay;">
<div class="absolute inset-0 bg-black opacity-40"></div>
<div class="relative max-w-7xl mx-auto px-4 sm:px-6 lg:px-8 text-center">
<div class="flex justify-center mb-6">
<img src="{{ url_for('static', filename='images/logo.png') }}" alt="Moto Adventure" class="h-24 w-24 mb-4">
</div>
<h1 class="text-5xl md:text-7xl font-bold mb-6 leading-tight drop-shadow-lg">
Adventure Awaits
</h1>
<p class="text-xl md:text-2xl mb-8 max-w-3xl mx-auto leading-relaxed drop-shadow-md">
Discover Romania's most breathtaking motorcycle routes, connect with fellow riders,
and find the perfect accommodation for your next adventure.
</p>
<div class="flex flex-col sm:flex-row gap-4 justify-center">
<a href="#about" class="bg-white text-blue-600 px-8 py-4 rounded-lg font-semibold text-lg hover:bg-gray-100 transition transform hover:scale-105 shadow-lg">
<i class="fas fa-compass mr-2"></i>Start Exploring
</a>
<a href="{{ url_for('community.index') }}" class="border-2 border-white text-white px-8 py-4 rounded-lg font-semibold text-lg hover:bg-white hover:text-purple-600 transition transform hover:scale-105">
<i class="fas fa-users mr-2"></i>Join Community
</a>
</div>
</div>
</section>
<!-- About Section -->
<section id="about" class="py-20 bg-white">
<div class="max-w-7xl mx-auto px-4 sm:px-6 lg:px-8">
<div class="text-center mb-16">
<h2 class="text-4xl font-bold text-gray-900 mb-4">
<i class="fas fa-route text-blue-600 mr-3"></i>
Discover Romania's Hidden Gems
</h2>
<p class="text-xl text-gray-600 max-w-3xl mx-auto">
Join our passionate community of motorcycle enthusiasts as we explore the most spectacular
routes Romania has to offer. From winding mountain passes to scenic coastal roads.
</p>
</div>
<div class="grid grid-cols-1 lg:grid-cols-2 gap-12 items-center">
<div class="space-y-6">
<div class="flex items-start space-x-4">
<div class="bg-blue-100 p-3 rounded-lg">
<i class="fas fa-mountain text-blue-600 text-xl"></i>
</div>
<div>
<h3 class="text-xl font-semibold text-gray-900 mb-2">Epic Mountain Routes</h3>
<p class="text-gray-600">
Experience breathtaking rides through the Carpathian Mountains, including the famous
Transfăgărășan and Transalpina highways.
</p>
</div>
</div>
<div class="flex items-start space-x-4">
<div class="bg-purple-100 p-3 rounded-lg">
<i class="fas fa-users text-purple-600 text-xl"></i>
</div>
<div>
<h3 class="text-xl font-semibold text-gray-900 mb-2">Vibrant Community</h3>
<p class="text-gray-600">
Connect with fellow riders, share your adventures, and discover new routes through
our active community platform.
</p>
</div>
</div>
<div class="flex items-start space-x-4">
<div class="bg-teal-100 p-3 rounded-lg">
<i class="fas fa-map-marked-alt text-teal-600 text-xl"></i>
</div>
<div>
<h3 class="text-xl font-semibold text-gray-900 mb-2">GPS Tracks & Guides</h3>
<p class="text-gray-600">
Download detailed GPS tracks, get insider tips, and access comprehensive guides
for the best motorcycle routes.
</p>
</div>
</div>
</div>
<div class="relative">
<div class="bg-gradient-to-br from-emerald-400 via-cyan-400 to-blue-500 rounded-2xl p-8 text-white shadow-2xl transform rotate-3 hover:rotate-0 transition-transform duration-300">
<div class="bg-white bg-opacity-20 rounded-lg p-6 mb-6">
<i class="fas fa-motorcycle text-4xl mb-4"></i>
<h3 class="text-2xl font-bold mb-2">Adventure Stats</h3>
</div>
<div class="grid grid-cols-2 gap-6">
<div class="text-center">
<div class="text-3xl font-bold">150+</div>
<div class="text-blue-100">Routes Mapped</div>
</div>
<div class="text-center">
<div class="text-3xl font-bold">500+</div>
<div class="text-cyan-100">Active Riders</div>
</div>
<div class="text-center">
<div class="text-3xl font-bold">50K+</div>
<div class="text-emerald-100">KMs Explored</div>
</div>
<div class="text-center">
<div class="text-3xl font-bold">25+</div>
<div class="text-blue-100">Counties Covered</div>
</div>
</div>
</div>
</div>
</div>
</div>
</section>
<!-- Accommodation Section -->
<section id="accommodation" class="py-20 bg-gray-50">
<div class="max-w-7xl mx-auto px-4 sm:px-6 lg:px-8">
<div class="text-center mb-16">
<h2 class="text-4xl font-bold text-gray-900 mb-4">
<i class="fas fa-bed text-purple-600 mr-3"></i>
Pensiune BuonGusto
</h2>
<p class="text-xl text-gray-600 max-w-3xl mx-auto">
Your perfect base camp for motorcycle adventures. Enjoy comfortable accommodation,
secure parking, and warm hospitality in the heart of Romania's scenic landscapes.
</p>
</div>
<div class="grid grid-cols-1 lg:grid-cols-2 gap-12 items-center">
<div class="space-y-6">
<div class="bg-white p-6 rounded-xl shadow-lg border-l-4 border-blue-500">
<h3 class="text-xl font-semibold text-gray-900 mb-3 flex items-center">
<i class="fas fa-shield-alt text-blue-600 mr-2"></i>
Secure Motorcycle Parking
</h3>
<p class="text-gray-600">
Rest easy knowing your motorcycle is safe in our covered, monitored parking area.
We understand how precious your bike is to you.
</p>
</div>
<div class="bg-white p-6 rounded-xl shadow-lg border-l-4 border-teal-500">
<h3 class="text-xl font-semibold text-gray-900 mb-3 flex items-center">
<i class="fas fa-map-marked-alt text-teal-600 mr-2"></i>
Local Route Expertise
</h3>
<p class="text-gray-600">
Our staff are passionate about motorcycling and can recommend the best local routes,
hidden gems, and must-see attractions in the area.
</p>
</div>
</div>
<div class="relative">
<div class="bg-white rounded-2xl shadow-2xl overflow-hidden">
<div class="bg-gradient-to-r from-purple-500 to-blue-500 p-6 text-white">
<h3 class="text-2xl font-bold mb-2">
<i class="fas fa-star mr-2"></i>
Premium Accommodation
</h3>
<p class="text-blue-100">Experience comfort and convenience</p>
</div>
<div class="p-6 space-y-4">
<div class="flex items-center justify-between">
<span class="text-gray-600">Comfortable Rooms</span>
<i class="fas fa-check text-green-500"></i>
</div>
<div class="flex items-center justify-between">
<span class="text-gray-600">Free WiFi</span>
<i class="fas fa-check text-green-500"></i>
</div>
<div class="flex items-center justify-between">
<span class="text-gray-600">Draft Beers for Responsible Drivers</span>
<i class="fas fa-check text-green-500"></i>
</div>
<div class="flex items-center justify-between">
<span class="text-gray-600">Route Planning</span>
<i class="fas fa-check text-green-500"></i>
</div>
<div class="border-t pt-4">
<div class="flex items-center justify-between text-lg font-semibold">
<span>Starting from</span>
<span class="text-purple-600">€45/night</span>
</div>
</div>
<a href="https://buongusto.ro/index.php/book-now/" target="_blank" class="w-full bg-gradient-to-r from-purple-600 to-blue-600 text-white py-3 rounded-lg font-semibold hover:from-purple-700 hover:to-blue-700 transition transform hover:scale-105 block text-center">
<i class="fas fa-calendar-alt mr-2"></i>
Book Now
</a>
</div>
</div>
</div>
</div>
</div>
</section>
<!-- Community Section -->
<section id="community" class="py-20 bg-white">
<div class="max-w-7xl mx-auto px-4 sm:px-6 lg:px-8">
<div class="text-center mb-16">
<h2 class="text-4xl font-bold text-gray-900 mb-4">
<i class="fas fa-users text-teal-600 mr-3"></i>
Stories & Tracks Community
</h2>
<p class="text-xl text-gray-600 max-w-3xl mx-auto">
Share your adventures, discover new routes, and connect with fellow motorcycle enthusiasts.
Every ride has a story - what's yours?
</p>
</div>
<div class="grid grid-cols-1 md:grid-cols-3 gap-8 mb-12">
<div class="text-center group">
<div class="bg-emerald-100 w-20 h-20 rounded-full flex items-center justify-center mx-auto mb-4 group-hover:bg-emerald-200 transition">
<i class="fas fa-camera text-emerald-600 text-2xl"></i>
</div>
<h3 class="text-xl font-semibold text-gray-900 mb-2">Share Photos</h3>
<p class="text-gray-600">
Upload stunning photos from your rides and inspire others to explore new destinations.
</p>
</div>
<div class="text-center group">
<div class="bg-blue-100 w-20 h-20 rounded-full flex items-center justify-center mx-auto mb-4 group-hover:bg-blue-200 transition">
<i class="fas fa-route text-blue-600 text-2xl"></i>
</div>
<h3 class="text-xl font-semibold text-gray-900 mb-2">Upload GPS Tracks</h3>
<p class="text-gray-600">
Share your favorite routes with detailed GPS tracks that others can download and follow.
</p>
</div>
<div class="text-center group">
<div class="bg-purple-100 w-20 h-20 rounded-full flex items-center justify-center mx-auto mb-4 group-hover:bg-purple-200 transition">
<i class="fas fa-comments text-purple-600 text-2xl"></i>
</div>
<h3 class="text-xl font-semibold text-gray-900 mb-2">Connect & Discuss</h3>
<p class="text-gray-600">
Join conversations, get tips, and plan group rides with our active community.
</p>
</div>
</div>
<div class="text-center">
<div class="bg-gradient-to-r from-emerald-500 via-cyan-500 to-blue-500 rounded-2xl p-8 text-white">
<h3 class="text-2xl font-bold mb-4">Ready to Share Your Adventure?</h3>
<p class="text-blue-100 mb-6 text-lg">
Join thousands of riders who are already sharing their stories and discovering new routes.
</p>
<div class="flex flex-col sm:flex-row gap-4 justify-center">
{% if current_user.is_authenticated %}
<a href="{{ url_for('community.new_post') }}" class="bg-white text-blue-600 px-8 py-3 rounded-lg font-semibold hover:bg-gray-100 transition transform hover:scale-105">
<i class="fas fa-plus mr-2"></i>Create New Post
</a>
<a href="{{ url_for('community.index') }}" class="border-2 border-white text-white px-8 py-3 rounded-lg font-semibold hover:bg-white hover:text-cyan-600 transition transform hover:scale-105">
<i class="fas fa-eye mr-2"></i>Browse Stories
</a>
{% else %}
<a href="{{ url_for('auth.register') }}" class="bg-white text-blue-600 px-8 py-3 rounded-lg font-semibold hover:bg-gray-100 transition transform hover:scale-105">
<i class="fas fa-user-plus mr-2"></i>Join Community
</a>
<a href="{{ url_for('community.index') }}" class="border-2 border-white text-white px-8 py-3 rounded-lg font-semibold hover:bg-white hover:text-cyan-600 transition transform hover:scale-105">
<i class="fas fa-eye mr-2"></i>Browse Stories
</a>
{% endif %}
</div>
</div>
</div>
</div>
</section>
{% endblock %}