68 lines
2.6 KiB
HTML
68 lines
2.6 KiB
HTML
{% extends "base.html" %}
|
|
|
|
{% block title %}Stegasoo - Secure Steganography{% endblock %}
|
|
|
|
{% block content %}
|
|
|
|
<div class="row justify-content-center">
|
|
<div class="col-lg-8 col-xl-7">
|
|
|
|
<!-- Hero -->
|
|
<div class="text-center mb-5">
|
|
<img src="{{ url_for('static', filename='logo.svg') }}" alt="Stegasoo" height="120" class="mb-3">
|
|
<h1 class="display-5 fw-bold title-gold mb-2">Stegasoo</h1>
|
|
<p class="lead text-muted">Hide encrypted data in plain sight.</p>
|
|
</div>
|
|
|
|
<!-- Channel Status -->
|
|
{% if channel_configured %}
|
|
<div class="alert alert-success mb-4 small">
|
|
<div class="d-flex align-items-center justify-content-between">
|
|
<span><i class="bi bi-shield-lock me-2"></i><strong>Private Channel</strong></span>
|
|
<code>{{ channel_fingerprint }}</code>
|
|
</div>
|
|
</div>
|
|
{% endif %}
|
|
|
|
<!-- Action Cards -->
|
|
<div class="row g-3 mb-4">
|
|
<div class="col-4">
|
|
<a href="/encode" class="text-decoration-none card-link">
|
|
<div class="card feature-card text-center py-4">
|
|
<i class="bi bi-lock-fill fs-2 embossed-icon mb-2"></i>
|
|
<h6 class="mb-0">Encode</h6>
|
|
</div>
|
|
</a>
|
|
</div>
|
|
<div class="col-4">
|
|
<a href="/decode" class="text-decoration-none card-link">
|
|
<div class="card feature-card text-center py-4">
|
|
<i class="bi bi-unlock-fill fs-2 embossed-icon mb-2"></i>
|
|
<h6 class="mb-0">Decode</h6>
|
|
</div>
|
|
</a>
|
|
</div>
|
|
<div class="col-4">
|
|
<a href="/generate" class="text-decoration-none card-link">
|
|
<div class="card feature-card text-center py-4">
|
|
<i class="bi bi-key-fill fs-2 embossed-icon mb-2"></i>
|
|
<h6 class="mb-0">Generate</h6>
|
|
</div>
|
|
</a>
|
|
</div>
|
|
</div>
|
|
|
|
<!-- Quick Info -->
|
|
<div class="text-center text-muted small">
|
|
<p class="mb-2">
|
|
<i class="bi bi-shield-check text-success me-1"></i>AES-256
|
|
<i class="bi bi-image text-info me-1"></i>Reference Photo
|
|
<i class="bi bi-soundwave text-warning me-1"></i>DCT/LSB
|
|
</p>
|
|
<a href="/about" class="text-muted"><i class="bi bi-info-circle me-1"></i>Learn more</a>
|
|
</div>
|
|
|
|
</div>
|
|
</div>
|
|
{% endblock %}
|