-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
28 lines (24 loc) · 1.04 KB
/
index.html
File metadata and controls
28 lines (24 loc) · 1.04 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>File Upload</title>
<link rel="stylesheet" href="{{ url_for('static', filename='css/styles.css') }}">
</head>
<body>
<header>
<img src="{{ url_for('static', filename='images/fileExpertLogoNew.png') }}" alt="File Expert Logo" class="logo">
<h1>File Expert</h1>
</header>
<div class="container">
<h2>Upload a File</h2>
<form action="/upload" method="post" enctype="multipart/form-data">
<input type="file" name="file" required>
<input type="submit" value="Upload" class="btn">
</form>
</div>
<div class="description-container">
<p>FileExpert analyzes uploaded files to determine their MIME type, ensuring file integrity and security. By comparing the MIME type to the file extension, it helps to identify discrepancies and potential security risks, making it an important tool for digital forensics and cybersecurity efforts.</p>
</div>
</body>
</html>