added gear icon for link to manage page

This commit is contained in:
J-onasJones 2024-10-21 16:20:32 +02:00
parent 00d17308ce
commit be32ca8138

View file

@ -50,6 +50,7 @@ async function handleDefaultGet(env) {
return new Response(` return new Response(`
<html> <html>
<head> <head>
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.0.0-beta3/css/all.min.css">
<title>Tutorium Resources</title> <title>Tutorium Resources</title>
<style> <style>
body, html { body, html {
@ -109,6 +110,9 @@ async function handleDefaultGet(env) {
<a class="btn" href="/all">View All Files</a> <a class="btn" href="/all">View All Files</a>
<a style="padding-top:10px" href="https://discord.gg/wVXF7b6CkS" >Discord</a> <a style="padding-top:10px" href="https://discord.gg/wVXF7b6CkS" >Discord</a>
</div> </div>
<a href="/manage" title="Manage Uploads" style="position:absolute;bottom:20px;right:20px;color: black">
<i class="fas fa-cog" style="font-size: 24px;"></i>
</a>
</body> </body>
</html> </html>
`, { headers: { 'Content-Type': 'text/html' } }); `, { headers: { 'Content-Type': 'text/html' } });