- Database: Add user_channel_keys table with CASCADE delete - Auth: Add CRUD functions for channel key management (10 keys/user limit) - Routes: Add key save/delete/rename endpoints and JSON API - Account page: Add saved keys section with add/rename/delete UI - Encode/Decode: Add saved keys to channel key dropdown (optgroup) - About page: Add Channel Key QR generator for sharing keys - Track last_used_at when saved keys are used 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
196 lines
9.1 KiB
HTML
196 lines
9.1 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>
|
|
{% 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 %}
|