Files
simplex-manager/manager/templates/relay.html
Jon 4ed2f9ba14 UI: Font Awesome icons, Material touches, 3-line collapse button
Swap all emoji icons for Font Awesome (sidebar, homepage tiles, profile/chat/
list/settings/relay actions); add Roboto font + card elevation hover for a
Material feel. Replace the bottom 'Collapse' pill with a 3-line (fa-bars) toggle
in the sidebar header; remove the old collapse pill CSS/JS. Copy buttons toggle
FA check/copy via innerHTML. Plain text status (✓/✗) and back arrows kept.

Co-Authored-By: Claude Opus 4.8 <noreply@anthropic.com>
2026-06-05 20:06:59 +01:00

16 lines
607 B
HTML
Raw Permalink Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

{% extends "base.html" %}
{% block title %}{{ title }} — SimpleX Manager{% endblock %}
{% block content %}
<div class="flex-between" style="margin-bottom:24px;">
<h1 style="margin:0;">{{ title }}</h1>
<a href="/" class="muted" style="text-decoration:none;">← Home</a>
</div>
<div class="card" style="text-align:center;padding:48px 24px;">
<div style="font-size:40px;line-height:1;margin-bottom:12px;"><i class="fa-solid fa-shuffle"></i></div>
<strong>{{ title }} — coming soon</strong>
<p class="muted" style="margin-top:8px;">This relay isnt implemented yet.</p>
</div>
{% endblock %}