diff --git a/frontend/Web/admin.html b/frontend/Web/admin.html
new file mode 100644
index 0000000..1760d8c
--- /dev/null
+++ b/frontend/Web/admin.html
@@ -0,0 +1,244 @@
+
+
+
+
+ Admin Panel - ZYM's Book Store
+
+
+
+
+
+
+
+
+
+ This is content.
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/frontend/Web/index.html b/frontend/Web/index.html
index f398f7a..6aeed3d 100644
--- a/frontend/Web/index.html
+++ b/frontend/Web/index.html
@@ -132,10 +132,10 @@
diff --git a/frontend/Web/index.js b/frontend/Web/index.js
index 3ac8ac6..0f31f72 100644
--- a/frontend/Web/index.js
+++ b/frontend/Web/index.js
@@ -169,6 +169,10 @@ app.get('/passwd', (req, res) => {
res.sendFile(join(__dirname, 'passwd.html'));
});
+app.get('/admin', (req, res) => {
+ res.sendFile(join(__dirname, 'admin.html'));
+});
+
server.listen(3000, () => {
console.log('server running at http://localhost:3000');
});
\ No newline at end of file
diff --git a/frontend/Web/login.html b/frontend/Web/login.html
index cecc75f..bf8b3de 100644
--- a/frontend/Web/login.html
+++ b/frontend/Web/login.html
@@ -170,10 +170,10 @@
diff --git a/frontend/Web/passwd.html b/frontend/Web/passwd.html
index 848e864..9bab664 100644
--- a/frontend/Web/passwd.html
+++ b/frontend/Web/passwd.html
@@ -171,10 +171,10 @@
diff --git a/frontend/Web/register.html b/frontend/Web/register.html
index 43831a5..5e5041e 100644
--- a/frontend/Web/register.html
+++ b/frontend/Web/register.html
@@ -171,10 +171,10 @@