file-share/server/dist/fileinfo.html

43 lines
1,023 B
HTML
Raw Permalink Normal View History

2024-07-22 18:59:09 +02:00
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>FILE SHARE</title>
<link rel="stylesheet" href="fileinfo.css">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/4.7.0/css/font-awesome.min.css">
</head>
<body>
<div id="navbar">
</div>
<h1> FILE SHARE </h1>
<div id="main">
<div id="undiv1">
<label for="idInput" id="lab1">Enter ID:</label>
<input type="text" id="idInput"><br><br>
<label for="keyInput" id="lab2">Enter Key:</label>
<input type="text" id="keyInput"><br><br>
</div>
<div id="undiv2">
<button id= "btn2" onclick="getID()">Fetch Data</button>
<button id="btn1"><a id="link"> Download</a></button>
</div>
<div id="fileInfo"> </div>
</div>
<footer id="footer"> @Fileshare</footer>
<script src="fileinfo.js"></script>
</body>
</html>