{% extends "onboarding/base.html" %} {% block title %}Welcome{% endblock %} {% block content %}

Welcome to PRSM Node Setup

This wizard will guide you through setting up your PRSM node. First, let's verify your system meets the prerequisites.

System Requirements Check
{% for key, check in checks.items() %} {% if key != 'all_ok' %}
{{ check.label }}
{{ check.value }}
{% if check.ok %} {% else %} {% endif %}
{% endif %} {% endfor %}
{% if not checks.all_ok %}
Some requirements are not met.
You can continue, but some features may be limited.
    {% for key, check in checks.items() %} {% if key != 'all_ok' and not check.ok %}
  • {{ check.label }}: {{ check.value }}
  • {% endif %} {% endfor %}
{% endif %}
{% endblock %}