{% extends "base.html" %} {% block title %}Home - {{project_name}}{% endblock %} {% block content %}

Welcome to {{project_name}}

A modern Flask fullstack application with authentication

{% if not current_user.is_authenticated %}
Get Started Login
{% else %}
Go to Dashboard
{% endif %}
Features

🔐 Authentication

Secure user registration and login with Flask-Login

🎨 Modern UI

Clean and responsive design with custom CSS

📝 Form Validation

WTForms with CSRF protection and validation

🚀 Production Ready

Secure session management and error handling

Getting Started
  1. Create an account by clicking the "Get Started" button
  2. Log in with your credentials
  3. Access your personalized dashboard
  4. Start building your application!
{% endblock %}