- Recovery key generation (32-char alphanumeric, dashed format) - Multiple backup methods: text file, QR code, stego image - QR codes obfuscated with XOR (RECOVERY_OBFUSCATION_KEY constant) - Stego backup hides key in image using Stegasoo itself - CLI: `stegasoo admin recover --db path/to/db` - Web routes: /recover, /account/recovery/regenerate - Toast notifications now auto-dismiss after 20s with fade - Updated WEB_UI.md and CLI.md documentation for v4.1.0 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
235 lines
11 KiB
HTML
235 lines
11 KiB
HTML
{% extends "base.html" %}
|
|
|
|
{% block title %}Account - Stegasoo{% endblock %}
|
|
|
|
{% block content %}
|
|
<div class="row justify-content-center">
|
|
<div class="col-md-6 col-lg-5">
|
|
<div class="card">
|
|
<div class="card-header">
|
|
<h5 class="mb-0"><i class="bi bi-person-gear me-2"></i>Account Settings</h5>
|
|
</div>
|
|
<div class="card-body">
|
|
<p class="text-muted mb-4">
|
|
Logged in as <strong>{{ username }}</strong>
|
|
{% if is_admin %}
|
|
<span class="badge bg-warning text-dark ms-2">
|
|
<i class="bi bi-shield-check me-1"></i>Admin
|
|
</span>
|
|
{% endif %}
|
|
</p>
|
|
|
|
{% if is_admin %}
|
|
<div class="mb-4">
|
|
<a href="{{ url_for('admin_users') }}" class="btn btn-outline-primary w-100">
|
|
<i class="bi bi-people me-2"></i>Manage Users
|
|
</a>
|
|
</div>
|
|
|
|
<!-- Recovery Key Management (Admin only) -->
|
|
<div class="card bg-dark mb-4">
|
|
<div class="card-body py-3">
|
|
<div class="d-flex justify-content-between align-items-center">
|
|
<div>
|
|
<i class="bi bi-shield-lock me-2"></i>
|
|
<strong>Recovery Key</strong>
|
|
{% if has_recovery %}
|
|
<span class="badge bg-success ms-2">Configured</span>
|
|
{% else %}
|
|
<span class="badge bg-secondary ms-2">Not Set</span>
|
|
{% endif %}
|
|
</div>
|
|
<div class="btn-group btn-group-sm">
|
|
<a href="{{ url_for('regenerate_recovery') }}" class="btn btn-outline-warning"
|
|
onclick="return confirm('Generate a new recovery key? This will invalidate any existing key.')">
|
|
<i class="bi bi-arrow-repeat me-1"></i>
|
|
{{ 'Regenerate' if has_recovery else 'Generate' }}
|
|
</a>
|
|
{% if has_recovery %}
|
|
<form method="POST" action="{{ url_for('disable_recovery') }}" style="display:inline;">
|
|
<button type="submit" class="btn btn-outline-danger"
|
|
onclick="return confirm('Disable recovery? If you forget your password, you will NOT be able to recover your account.')">
|
|
<i class="bi bi-x-lg"></i>
|
|
</button>
|
|
</form>
|
|
{% endif %}
|
|
</div>
|
|
</div>
|
|
<small class="text-muted d-block mt-2">
|
|
{% if has_recovery %}
|
|
Allows password reset if you're locked out.
|
|
{% else %}
|
|
No recovery option - most secure, but no password reset possible.
|
|
{% endif %}
|
|
</small>
|
|
</div>
|
|
</div>
|
|
{% endif %}
|
|
|
|
<h6 class="text-muted mb-3">Change Password</h6>
|
|
|
|
<form method="POST" action="{{ url_for('account') }}" id="accountForm">
|
|
<div class="mb-3">
|
|
<label class="form-label">
|
|
<i class="bi bi-key me-1"></i> Current Password
|
|
</label>
|
|
<div class="input-group">
|
|
<input type="password" name="current_password" class="form-control"
|
|
id="currentPasswordInput" required>
|
|
<button class="btn btn-outline-secondary" type="button"
|
|
onclick="togglePassword('currentPasswordInput', this)">
|
|
<i class="bi bi-eye"></i>
|
|
</button>
|
|
</div>
|
|
</div>
|
|
|
|
<div class="mb-3">
|
|
<label class="form-label">
|
|
<i class="bi bi-key-fill me-1"></i> New Password
|
|
</label>
|
|
<div class="input-group">
|
|
<input type="password" name="new_password" class="form-control"
|
|
id="newPasswordInput" required minlength="8">
|
|
<button class="btn btn-outline-secondary" type="button"
|
|
onclick="togglePassword('newPasswordInput', this)">
|
|
<i class="bi bi-eye"></i>
|
|
</button>
|
|
</div>
|
|
<div class="form-text">Minimum 8 characters</div>
|
|
</div>
|
|
|
|
<div class="mb-4">
|
|
<label class="form-label">
|
|
<i class="bi bi-key-fill me-1"></i> Confirm New Password
|
|
</label>
|
|
<div class="input-group">
|
|
<input type="password" name="new_password_confirm" class="form-control"
|
|
id="newPasswordConfirmInput" required minlength="8">
|
|
<button class="btn btn-outline-secondary" type="button"
|
|
onclick="togglePassword('newPasswordConfirmInput', this)">
|
|
<i class="bi bi-eye"></i>
|
|
</button>
|
|
</div>
|
|
</div>
|
|
|
|
<button type="submit" class="btn btn-primary w-100">
|
|
<i class="bi bi-check-lg me-2"></i>Update Password
|
|
</button>
|
|
</form>
|
|
|
|
</div>
|
|
</div>
|
|
|
|
<!-- Saved Channel Keys Section -->
|
|
<div class="card mt-4">
|
|
<div class="card-header d-flex justify-content-between align-items-center">
|
|
<h5 class="mb-0"><i class="bi bi-key-fill me-2"></i>Saved Channel Keys</h5>
|
|
<span class="badge bg-secondary">{{ channel_keys|length }} / {{ max_channel_keys }}</span>
|
|
</div>
|
|
<div class="card-body">
|
|
{% if channel_keys %}
|
|
<div class="list-group list-group-flush mb-3">
|
|
{% for key in channel_keys %}
|
|
<div class="list-group-item d-flex justify-content-between align-items-center px-0">
|
|
<div>
|
|
<strong>{{ key.name }}</strong>
|
|
<br>
|
|
<code class="small text-muted">{{ key.channel_key[:4] }}...{{ key.channel_key[-4:] }}</code>
|
|
{% if key.last_used_at %}
|
|
<span class="text-muted small ms-2">Last used: {{ key.last_used_at[:10] }}</span>
|
|
{% endif %}
|
|
</div>
|
|
<div class="btn-group btn-group-sm">
|
|
<button type="button" class="btn btn-outline-secondary"
|
|
onclick="renameKey({{ key.id }}, '{{ key.name }}')"
|
|
title="Rename">
|
|
<i class="bi bi-pencil"></i>
|
|
</button>
|
|
<form method="POST" action="{{ url_for('account_delete_key', key_id=key.id) }}"
|
|
style="display:inline;"
|
|
onsubmit="return confirm('Delete key "{{ key.name }}"?')">
|
|
<button type="submit" class="btn btn-outline-danger" title="Delete">
|
|
<i class="bi bi-trash"></i>
|
|
</button>
|
|
</form>
|
|
</div>
|
|
</div>
|
|
{% endfor %}
|
|
</div>
|
|
{% else %}
|
|
<p class="text-muted mb-3">No saved channel keys. Save keys for quick access on encode/decode pages.</p>
|
|
{% endif %}
|
|
|
|
{% if can_save_key %}
|
|
<hr>
|
|
<h6 class="text-muted mb-3">Add New Key</h6>
|
|
<form method="POST" action="{{ url_for('account_save_key') }}">
|
|
<div class="row g-2 mb-2">
|
|
<div class="col-5">
|
|
<input type="text" name="key_name" class="form-control form-control-sm"
|
|
placeholder="Key name" required maxlength="50">
|
|
</div>
|
|
<div class="col-7">
|
|
<input type="text" name="channel_key" class="form-control form-control-sm font-monospace"
|
|
placeholder="Channel key (32 hex chars)" required
|
|
pattern="[0-9a-fA-F\-]{32,39}" title="32 hex characters">
|
|
</div>
|
|
</div>
|
|
<button type="submit" class="btn btn-sm btn-outline-primary">
|
|
<i class="bi bi-plus-lg me-1"></i>Save Key
|
|
</button>
|
|
</form>
|
|
{% else %}
|
|
<div class="alert alert-info mb-0 small">
|
|
<i class="bi bi-info-circle me-1"></i>
|
|
Maximum of {{ max_channel_keys }} keys reached. Delete a key to add more.
|
|
</div>
|
|
{% endif %}
|
|
</div>
|
|
</div>
|
|
|
|
<!-- Logout -->
|
|
<div class="mt-4">
|
|
<a href="{{ url_for('logout') }}" class="btn btn-outline-danger w-100">
|
|
<i class="bi bi-box-arrow-left me-2"></i>Logout
|
|
</a>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
|
|
<!-- Rename Modal -->
|
|
<div class="modal fade" id="renameModal" tabindex="-1">
|
|
<div class="modal-dialog modal-sm">
|
|
<div class="modal-content">
|
|
<form method="POST" id="renameForm">
|
|
<div class="modal-header">
|
|
<h6 class="modal-title">Rename Key</h6>
|
|
<button type="button" class="btn-close" data-bs-dismiss="modal"></button>
|
|
</div>
|
|
<div class="modal-body">
|
|
<input type="text" name="new_name" class="form-control" id="renameInput"
|
|
required maxlength="50">
|
|
</div>
|
|
<div class="modal-footer">
|
|
<button type="button" class="btn btn-sm btn-secondary" data-bs-dismiss="modal">Cancel</button>
|
|
<button type="submit" class="btn btn-sm btn-primary">Rename</button>
|
|
</div>
|
|
</form>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
{% endblock %}
|
|
|
|
{% block scripts %}
|
|
<script src="{{ url_for('static', filename='js/auth.js') }}"></script>
|
|
<script>
|
|
StegasooAuth.initPasswordConfirmation('accountForm', 'newPasswordInput', 'newPasswordConfirmInput');
|
|
|
|
function renameKey(keyId, currentName) {
|
|
document.getElementById('renameInput').value = currentName;
|
|
document.getElementById('renameForm').action = '/account/keys/' + keyId + '/rename';
|
|
new bootstrap.Modal(document.getElementById('renameModal')).show();
|
|
}
|
|
</script>
|
|
{% endblock %}
|