CRUD controllers for Article, ArticleType, AttributeDefinition, ArticleTypeAttribute, AIPipelineJob, Order, Customer, Invoice, User and LogEntry. SecurityController handles login/logout; TotpSetupController manages 2FA enrollment. API controllers for pipeline and orders. Admin dashboard template and Twig base layout included. Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
14 lines
575 B
Twig
14 lines
575 B
Twig
{% extends 'base.html.twig' %}
|
|
|
|
{% block title %}Set Up Two-Factor Authentication{% endblock %}
|
|
|
|
{% block body %}
|
|
<div style="max-width:500px;margin:4rem auto;font-family:sans-serif">
|
|
<h1>Set Up Two-Factor Authentication</h1>
|
|
<p>Scan this QR code with your authenticator app (Google Authenticator, Authy, etc.):</p>
|
|
{{ qr_code_image_data_uri(qr_code_url) }}
|
|
<p>Or enter this secret manually: <code>{{ secret }}</code></p>
|
|
<p>After scanning, verify your setup by logging in again.</p>
|
|
<a href="{{ path('totp_manage') }}">Back</a>
|
|
</div>
|
|
{% endblock %}
|