SmartDoc / templates /ImageInterpretation.html
chabane
Updating UI
6c3c19b
raw
history blame
4.53 kB
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>SmartDoc AI-Image Interpretation</title>
<link rel="stylesheet" href="static/styles/features.css" />
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.7.2/css/all.min.css" />
<link rel="stylesheet" href="static/styles/notification.css" />
</head>
<body>
<div class="notifications">
</div>
<header>
<div class="container">
<a href="/">SmartDoc AI </a>
</div>
</header>
<main>
<section id="hero" class="hero">
<img src="static/assests/g.svg" alt="" />
<div class="container hero-content">
<h1>Unlock the Meaning Behind <br />Your Images in Seconds</h1>
<h3>AI - powered analysis for visual content</h3>
<p>
Whether you’re working with photos , diagrams , or illustrations ,
our image interpretation tool provides detailed descriptions and
insights , making visual data more accessible than ever.
</p>
</div>
</section>
<section class="raisons">
<div class="container raisons-content">
<h1 class="title">Why Choose Our Image Interpretation Tool ?</h1>
<div class="raisons-wrapper">
<div class="raison">
<i class="fas fa-check-circle"></i>
<p>Accurate and detailed descriptions</p>
</div>
<div class="raison">
<i class="fas fa-check-circle"></i>
<p>Dentifies objects,scenes , and text within images</p>
</div>
<div class="raison">
<i class="fas fa-check-circle"></i>
<p>Ideal for accessibility and content creation</p>
</div>
<div class="raison">
<i class="fas fa-check-circle"></i>
<p>Secure and private processing</p>
</div>
</div>
</div>
</section>
<section class="steps">
<img src="static/assests/g.svg" alt="" />
<div class="steps-content">
<h1 class="title">How it works</h1>
<div class="steps-wrapper">
<div class="step">
<span>1</span>
<p>Upload your Image</p>
</div>
<div class="step">
<span>2</span>
<p>Let our AI analyze the content</p>
</div>
<div class="step">
<span>3</span>
<p>View Detailed description or tags</p>
</div>
</div>
</div>
</section>
<section class="upload">
<div class="container upload-content">
<h1 class="title">Upload</h1>
<p>Supported Formats: PNG,JPG,JPEG</p>
<form class="wrapper" enctype="multipart/form-data">
<div class="input-wrapper">
<label for="document-input" id="label-input" class="active" draggable="true">
<input type="file" id="document-input" hidden />
<i class="fa fa-cloud-arrow-up"></i>
<span>Drag and Drop or Select a File</span>
</label>
</div>
<div class="file-container"></div>
<div class="btn-wrapper">
<button type="submit" id="interpret">Interpret</button>
</div>
</form>
</div>
</section>
<section id="result_img" class="result_img">
<div class="container result-content">
<h1 class="title">Result</h1>
<div class="img-wrapper">
</div>
<h3>Description : </h3>
<p class="result-text">
</p>
</div>
</section>
</main>
<footer>SmartDoc AI - 2025</footer>
<script src="static/scripts/image_iterpretation.js"></script>
</body>
</html>