Updated static files on backend

This commit is contained in:
Patrick Alvin Alcala 2025-11-04 17:20:33 +08:00
parent 321109e064
commit 0a81bb8ea7
4 changed files with 22 additions and 3 deletions

View file

@ -69,6 +69,8 @@ func connect() {
// }))
router.StaticFile("/", "static/index.html")
router.StaticFile("/esign.webp", "static/esign.webp")
router.StaticFile("/favicon.png", "static/favicon.png")
// shield := "inquiry"

BIN
backend/static/esign.webp Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 6.1 KiB

BIN
backend/static/favicon.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 3.7 KiB

View file

@ -2,24 +2,36 @@
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1, viewport-fit=cover" />
<meta name="viewport" content="width=device-width, initial-scale=1" />
<meta name="name" content="OCBO e-Sign Server" />
<meta name="description" content="Backend application for OCBO e-Sign" />
<meta name="author" content="Patrick Alvin Alcala" />
<meta name="developer" content="Patrick Alvin Alcala" />
<link rel="icon" type="image/png" href="/favicon.png" />
<title>OCBO e-Sign Server</title>
<style>
body {
display: flex;
gap: 20px;
flex-direction: column;
flex-wrap: wrap;
justify-content: start;
align-items: center;
align-content: center;
background-color: #16212c;
}
.logo {
width: 200px;
height: auto;
padding: 2rem 0 0 0;
}
.title {
font-family: 'Roboto', sans-serif;
text-align: center;
margin: 0;
padding: 20px 0;
color: rgba(255, 255, 255, 0.848);
color: rgba(240, 254, 233, 0.905);
font-size: 3.25rem;
}
@ -27,11 +39,16 @@
.title {
font-size: 1.25rem;
}
.logo {
width: 100px;
}
}
</style>
</head>
<body>
<img class="logo" src="/esign.webp" alt="esign logo" />
<h1 class="title">OCBO e-Sign Server is running</h1>
</body>
</html>