{% extends "base.html" %} {% block content %}

Device Management

Link and manage multiple WhatsApp sessions using Pairing Code.

Add New Device

Enter a phone number to generate a pairing code for a new WhatsApp session.

  • Supports multiple devices per account
  • Sessions are stored by phone number
Include country code without + (e.g., 62 for Indonesia).

Communicating with WhatsApp servers...

YOUR CODE IS READY

Enter this code on your phone to complete linking.

Your Linked Devices

{% if devices %} {% for device in devices %}
+{{ device.phone }}
{{ 'ONLINE' if device.is_connected else 'OFFLINE' }}
{% endfor %} {% else %}

No devices linked yet. Use the form above to add your first device.

{% endif %}
{% endblock %} {% block scripts %} {% endblock %}