{% extends "base.html" %} {% block title %}Colosimo{% endblock %} {% block content %}

Welcome to Colosimo!

{% if colosimo_user %}

Glad you could stop by, {{ colosimo_user.username }}.

{% endif %}

Colosimo is a Chicago Boss sample project that displays PostgreSQL usage, basic templating, user registration/login, and bcrypt (using erlang-bcrypt).

{% if not colosimo_user %}

You should register, it will be fun.

{% endif %} {% endblock %}