Files
Hunt-AI/templates/profile.html

87 lines
3.8 KiB
HTML

{% extends "base.html" %}
{% block content %}
<h1>User Profile</h1>
<p>Welcome, {{ username }}!</p>
<!-- Display Flash Messages -->
{% with messages = get_flashed_messages(with_categories=true) %}
{% if messages %}
<ul>
{% for category, message in messages %}
<li class="{{ category }}">{{ message }}</li>
{% endfor %}
</ul>
{% endif %}
{% endwith %}
<!-- Display the username and other information -->
<div>
<h3>Your Information:</h3>
<ul>
<li><strong>Username:</strong> {{ username }}</li>
<li><strong>Email:</strong> {{ email }}</li>
<li><strong>Role:</strong> {{ role }}</li>
<li><strong>Team:</strong> {{ team }}</li>
<li><strong>Manager:</strong> {{ manager }}</li>
</ul>
<!-- Profile Update Form -->
<form method="POST">
<div>
<label for="role">Role:</label>
<select name="role" id="role" required>
<option value="" disabled selected>Please select a role</option>
<option value="Junior Host Analyst" {% if role == 'Junior Host Analyst' %}selected{% endif %}>Junior Host Analyst</option>
<option value="Junior Network Analyst" {% if role == 'Junior Network Analyst' %}selected{% endif %}>Junior Network Analyst</option>
<option value="Senior Host Analyst" {% if role == 'Senior Host Analyst' %}selected{% endif %}>Senior Host Analyst</option>
<option value="Senior Network Analyst" {% if role == 'Senior Network Analyst' %}selected{% endif %}>Senior Network Analyst</option>
<option value="Lead Analyst" {% if role == 'Lead Analyst' %}selected{% endif %}>Lead Analyst</option>
<option value="DFIR" {% if role == 'DFIR' %}selected{% endif %}>DFIR</option>
<option value="Malware Analyst" {% if role == 'Malware Analyst' %}selected{% endif %}>Malware Analyst</option>
</select>
</div>
<div>
<label for="theme">Theme:</label>
<select name="theme" id="theme">
<option value="dark" {% if theme == 'dark' %}selected{% endif %}>Dark Theme</option>
<option value="light" {% if theme == 'light' %}selected{% endif %}>Light Theme</option>
<option value="modern" {% if theme == 'modern' %}selected{% endif %}>Modern Theme</option>
<option value="hacker" {% if theme == 'hacker' %}selected{% endif %}>Hacker Theme</option>
<option value="vampire" {% if theme == 'vampire' %}selected{% endif %}>Vampire Theme</option>
<option value="nordic" {% if theme == 'nordic' %}selected{% endif %}>Nordic Theme</option>
<option value="halloween" {% if theme == 'halloween' %}selected{% endif %}>Halloween Theme</option>
<option value="xmas" {% if theme == 'xmas' %}selected{% endif %}>Christmas Theme</option>
</select>
</div>
<div>
<label for="team">Team:</label>
<input type="text" id="team" name="team" value="{{ team }}" required>
</div>
<div>
<label for="manager">Manager:</label>
<input type="text" id="manager" name="manager" value="{{ manager }}" required>
</div>
<div>
<label for="password">New Password (leave empty if unchanged):</label>
<input type="password" id="password" name="password">
</div>
<div>
<label for="password_confirm">Confirm New Password:</label>
<input type="password" id="password_confirm" name="password_confirm">
</div>
<button type="submit">Save</button>
</form>
<!-- Logout Button -->
<form action="{{ url_for('logout') }}" method="POST">
<button type="submit">Log Out</button>
</form>
</div>
{% endblock %}