4457ffe0b1
* feat: remove .gitconfig * feat: remove hyperdev assets * feat: add .gitignore * feat: add sample.env * feat: remove user stories from readme * feat: update packages and add dotenv * fix: update server.js * fix: port variable * fix: remove user stories from index + add favicon * fix: replace tabs with spaces * fix: css spacing + remove unused css
35 lines
1.0 KiB
HTML
35 lines
1.0 KiB
HTML
<!DOCTYPE html>
|
|
|
|
<html>
|
|
<head>
|
|
<title>File Metadata</title>
|
|
<link rel="shortcut icon" href="https://cdn.freecodecamp.org/universal/favicons/favicon-32x32.png" type="image/x-icon"/>
|
|
<link href="https://fonts.googleapis.com/css?family=Roboto" rel="stylesheet" type="text/css">
|
|
<link href="/public/style.css" rel="stylesheet" type="text/css">
|
|
</head>
|
|
|
|
<body>
|
|
<div class="container">
|
|
<h2>API Project: File Metadata Microservice</h2>
|
|
|
|
<h3>Usage:</h3>
|
|
<p>
|
|
Please Upload a File ...
|
|
</p>
|
|
<div class="view">
|
|
<h4 id="output"></h4>
|
|
<form enctype="multipart/form-data" method="POST" action="/api/fileanalyse">
|
|
<input id="inputfield" type="file" name="upfile">
|
|
<input id="button" type="submit" value="Upload">
|
|
</form>
|
|
</div>
|
|
</div>
|
|
<div class="footer">
|
|
<p>
|
|
by
|
|
<a href="http://www.freecodecamp.com">freeCodeCamp</a>
|
|
</p>
|
|
</div>
|
|
</body>
|
|
</html>
|