parth036's picture
Upload folder using huggingface_hub
645a41a verified
Raw
History Blame Contribute Delete
1.79 kB
<!doctype html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>{% block title %}AffectScreening{% endblock %}</title>
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link href="https://fonts.googleapis.com/css2?family=Space+Grotesk:wght@400;500;600;700&family=Work+Sans:wght@400;500;600&display=swap" rel="stylesheet">
<link rel="stylesheet" href="{{ url_for('static', filename='app.css') }}">
{% block head %}{% endblock %}
</head>
<body>
<header class="site-header">
<div class="container header-inner">
<a class="brand" href="{{ url_for('main.index') }}"><span class="brand-mark"></span>Affect<span class="brand-accent">Screening</span></a>
<nav class="nav">
<a href="{{ url_for('main.index') }}" class="{% if request.endpoint == 'main.index' %}active{% endif %}">Home</a>
<a href="{{ url_for('main.face') }}" class="{% if request.endpoint == 'main.face' %}active{% endif %}">Face</a>
<a href="{{ url_for('main.voice') }}" class="{% if request.endpoint == 'main.voice' %}active{% endif %}">Voice</a>
<a href="{{ url_for('main.phq') }}" class="{% if request.endpoint == 'main.phq' %}active{% endif %}">PHQ-9</a>
</nav>
</div>
</header>
<main class="main">
{% block content %}{% endblock %}
</main>
<footer class="site-footer">
<div class="container">
<p>⚠️ Educational demo — emotion signals are <strong>not a clinical diagnosis</strong>. The PHQ-9 is a screening aid, not a diagnosis. If you're struggling, please reach out to a professional.</p>
</div>
</footer>
{% block scripts %}{% endblock %}
</body>
</html>