{% extends "base.html" %} {% block title %}Portals - OWASP FinBot CTF{% endblock %} {% block extra_css %} .portal-card { transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1); } .portal-card:hover { transform: translateY(-4px); border-color: rgba(0,212,255,0.3); box-shadow: 0 16px 48px rgba(0,212,255,0.08); } input:focus { box-shadow: 0 0 0 3px rgba(0, 212, 255, 0.15); } {% endblock %} {% block content %}

Access Points

Four Portals. One Platform.

Choose your portal below. Sign in to save your progress across sessions and devices.

Not sure where to start? See how it works

{% if user and user.email %}

Signed in

{{ user.email }}

Your progress is being saved automatically. Challenges, badges, and achievements sync across all your devices.

{% else %}

Temporary Session

You can explore all portals and complete challenges, but your progress will only be saved in this browser session.

Save your progress

Enter your email and we'll send you a magic link — no password needed.

Already have an account? Signing in will restore your saved progress.

  • Keep your challenge progress forever
  • Sync across all your devices
  • No password to remember
{% endif %}
{% endblock %}