mirror of
https://github.com/thecyberlearn/quantum-ai-v3.git
synced 2026-08-18 12:12:57 +00:00
- Add CyberSec Career Navigator with JotForm white-label integration - Implement direct access agent system alongside webhook agents - Add digital branding services page with SOSTAC+RACE methodology - Create dual integration patterns: webhook vs direct access flows - Clean up unused form API endpoints for streamlined architecture - Add career navigator management command and templates - Update marketplace with conditional logic for different agent types - Fix UI consistency issues (remove category labels, fix animations) - Update documentation to reflect new dual architecture 🤖 Generated with [Claude Code](https://claude.ai/code) Co-Authored-By: Claude <noreply@anthropic.com>
43 lines
788 B
HTML
43 lines
788 B
HTML
{% extends 'base.html' %}
|
|
{% load static %}
|
|
|
|
{% block title %}Career Navigator - Quantum Tasks AI{% endblock %}
|
|
|
|
{% block extra_css %}
|
|
<style>
|
|
/* Override main-container for full-width iframe */
|
|
.main-container {
|
|
max-width: none;
|
|
padding: 0;
|
|
height: calc(100vh - 80px); /* Account for header height */
|
|
}
|
|
|
|
.iframe-container {
|
|
width: 100%;
|
|
height: 100%;
|
|
}
|
|
|
|
.iframe-container iframe {
|
|
width: 100%;
|
|
height: 100%;
|
|
border: none;
|
|
display: block;
|
|
}
|
|
|
|
/* Hide footer for this page */
|
|
.footer {
|
|
display: none !important;
|
|
}
|
|
</style>
|
|
{% endblock %}
|
|
|
|
{% block content %}
|
|
<div class="iframe-container">
|
|
<iframe
|
|
src="{{ form_url }}"
|
|
frameborder="0"
|
|
scrolling="auto"
|
|
title="Career Navigator">
|
|
</iframe>
|
|
</div>
|
|
{% endblock %} |