fraudoo / static /terms.html
obaes's picture
Upload 10 files
71680bc verified
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Terms of Service - Fraudoo</title>
<link href="https://fonts.googleapis.com/css2?family=Inter:wght@300;400;600&display=swap" rel="stylesheet">
<style>
:root {
--primary: #8b5cf6;
--secondary: #d946ef;
--bg: #f8fafc;
--text: #1e293b;
}
body {
font-family: 'Inter', sans-serif;
background: linear-gradient(135deg, #f5f3ff 0%, #fdf2f8 100%);
color: var(--text);
margin: 0;
padding: 2rem;
display: flex;
justify-content: center;
}
.container {
background: rgba(255, 255, 255, 0.9);
backdrop-filter: blur(10px);
padding: 3rem;
border-radius: 20px;
box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
max-width: 800px;
width: 100%;
line-height: 1.6;
}
h1 {
color: var(--primary);
text-align: center;
margin-bottom: 2rem;
}
h2 {
color: var(--secondary);
margin-top: 1.5rem;
}
.back-btn {
display: inline-block;
margin-top: 2rem;
padding: 0.75rem 1.5rem;
background: var(--primary);
color: white;
text-decoration: none;
border-radius: 10px;
font-weight: 600;
}
</style>
</head>
<body>
<div class="container">
<h1>🐢 Terms of Service</h1>
<p>By using Fraudoo, you agree to the following terms.</p>
<h2>1. Acceptable Use</h2>
<p>You may use this tool for legitimate document verification purposes. Any attempt to reverse-engineer the
fraud detection logic or bypass security measures is prohibited.</p>
<h2>2. AI-Generated Content</h2>
<p>Fraudoo uses LLM Services models. While highly advanced, AI analysis can result in false positives or
negatives. Users must perform their own due diligence before making decisions based on the analysis.</p>
<h2>3. Liability</h2>
<p>Fraudoo is provided "as is" without warranty. We are not liable for any financial or legal consequences
resulting from the interpretation of document scores or reasoning produced by the service.</p>
<h2>4. Data Sovereignty</h2>
<p>You are responsible for ensuring you have the legal right to process the documents you upload to this
service.</p>
<a href="/" class="back-btn">← Back to App</a>
</div>
</body>
</html>