File size: 475 Bytes
662b3c5
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
<!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>