23 lines
768 B
HTML
23 lines
768 B
HTML
{% extends "base.html" %}
|
|||
|
|
|
||
|
|
{% block title %}Welcome - Reklamator{% endblock %}
|
||
|
|
|
||
|
|
{% block content %}
|
||
|
|
<div style="text-align: center; padding: 60px 20px;">
|
||
|
|
<h1 style="font-size: 2.5em; margin-bottom: 20px;">Reklamator</h1>
|
||
|
|
<p style="font-size: 1.3em; color: #666; margin-bottom: 40px;">
|
||
|
|
Anonymous Feedback Platform
|
||
|
|
</p>
|
||
|
|
|
||
|
|
<div style="max-width: 600px; margin: 0 auto; text-align: left;">
|
||
|
|
<h2>Submit Feedback</h2>
|
||
|
|
<p>If you have a product-specific submission link, use it to submit your feedback anonymously.</p>
|
||
|
|
|
||
|
|
<h2 style="margin-top: 40px;">Product Owners & Administrators</h2>
|
||
|
|
<p>
|
||
|
|
<a href="{{ url_for('auth.login') }}" class="btn">Login to Dashboard</a>
|
||
|
|
</p>
|
||
|
|
</div>
|
||
|
|
</div>
|
||
|
|
{% endblock %}
|