AIProject / static /index.html
Soltane777's picture
Upload 2 files
662b3c5 verified
raw
history blame contribute delete
475 Bytes
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>AI Web App</title>
<link rel="stylesheet" href="/static/style.css">
</head>
<body>
<h1>AI-Powered Web App</h1>
<form id="upload-form" enctype="multipart/form-data">
<input type="file" id="file-input" name="file">
<button type="submit">Analyze</button>
</form>
<div id="result"></div>
<script src="/static/script.js"></script>
</body>
</html>