Merge pull request #85 from theta42/docs

Fav Icon
This commit is contained in:
2025-12-31 19:11:08 -05:00
committed by GitHub
5 changed files with 419 additions and 896 deletions
+386 -882
View File
File diff suppressed because it is too large Load Diff
+13 -13
View File
@@ -20,24 +20,24 @@
"node": ">=18.0.0"
},
"dependencies": {
"@fortawesome/fontawesome-free": "^6.4.2",
"@fortawesome/fontawesome-free": "^7.1.0",
"@popperjs/core": "^2.11.8",
"acme-client": "^5.4.0",
"axios": "^1.7.4",
"bcrypt": "^5.1.1",
"bootstrap": "^5.3.3",
"axios": "^1.13.2",
"bcrypt": "^6.0.0",
"bootstrap": "^5.3.8",
"ejs": "^3.1.10",
"express": "^4.19.2",
"express": "^5.2.1",
"extend": "^3.0.2",
"jq-repeat": "^2.0.0",
"jq-repeat": "^2.0.1",
"jquery": "^3.7.1",
"ldapts": "^2.12.0",
"linux-sys-user": "^1.1.8",
"moment": "^2.29.4",
"ldapts": "^8.1.2",
"linux-sys-user": "^1.2.0",
"moment": "^2.30.1",
"mustache": "^4.2.0",
"p2psub": "^0.1.9",
"redis": "^4.6.7",
"socket.io": "^4.7.5",
"p2psub": "^0.2.0",
"redis": "^5.10.0",
"socket.io": "^4.8.3",
"tld-extract": "^2.1.0"
},
"license": "MIT",
@@ -46,6 +46,6 @@
"url": "https://git.theta42.com/wmantly/proxy.git"
},
"devDependencies": {
"nodemon": "^3.1.4"
"nodemon": "^3.1.11"
}
}
+17
View File
@@ -0,0 +1,17 @@
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100">
<!-- Background circle -->
<circle cx="50" cy="50" r="48" fill="#1a1a1a" stroke="#4a9eff" stroke-width="3"/>
<!-- Network nodes -->
<circle cx="30" cy="30" r="8" fill="#4a9eff"/>
<circle cx="70" cy="30" r="8" fill="#4a9eff"/>
<circle cx="50" cy="50" r="10" fill="#66b3ff"/>
<circle cx="30" cy="70" r="8" fill="#4a9eff"/>
<circle cx="70" cy="70" r="8" fill="#4a9eff"/>
<!-- Connection lines -->
<line x1="30" y1="30" x2="50" y2="50" stroke="#4a9eff" stroke-width="2"/>
<line x1="70" y1="30" x2="50" y2="50" stroke="#4a9eff" stroke-width="2"/>
<line x1="30" y1="70" x2="50" y2="50" stroke="#4a9eff" stroke-width="2"/>
<line x1="70" y1="70" x2="50" y2="50" stroke="#4a9eff" stroke-width="2"/>
</svg>

After

Width:  |  Height:  |  Size: 788 B

+1 -1
View File
@@ -42,7 +42,7 @@ router.get('/users', async function(req, res, next) {
res.render('users', {...values});
});
router.get('/login*', async function(req, res, next) {
router.get('/login/*splat', async function(req, res, next) {
res.render('login', {...values, redirect: req.query.redirect});
});
+2
View File
@@ -4,6 +4,8 @@
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
<title>Proxy - Theta 42 <%- title %></title>
<!-- Favicon -->
<link rel="icon" type="image/svg+xml" href="/static/favicon.svg">
<!-- CSS are placed here -->
<link rel="stylesheet" href="/static-modules/bootstrap/dist/css/bootstrap.min.css">
<link rel="stylesheet" href="/static-modules/@fortawesome/fontawesome-free/css/all.min.css">