{% extends "base.html" %}
{% block title %}Welcome to Vilcos{% endblock %}
{% block content %}
{% if user %}
Welcome, {{ user.username }}!
{% else %}
Welcome to Vilcos
{% endif %}
A modern FastAPI-based web framework with powerful features
Framework Features
Real-time WebSockets
Built-in support for multi-channel
communication
Modern UI
Vue 3 + Vuetify for beautiful interfaces
Authentication Ready
Simple session-based authentication system
Async Database
SQLAlchemy with connection pooling
{% if not user %}
Sign In
Sign Up
{% else %}
Sign Out
{% endif %}
Quick Links
FastAPI Documentation
Vue.js Documentation
Vuetify Documentation
{% endblock %}
{% block scripts %}
{% endblock %}