From 187a43461887330324fc4dfa4b20b8d2d526cdc6 Mon Sep 17 00:00:00 2001 From: charclayt <ukfeature@gmail.com> Date: Fri, 17 Mar 2023 09:53:10 +0000 Subject: [PATCH] Changed index.js Changed 'index.html' to 'login.html' --- src/index.html | 9 +++++++++ src/index.js | 2 +- 2 files changed, 10 insertions(+), 1 deletion(-) diff --git a/src/index.html b/src/index.html index e69de29b..56f65978 100644 --- a/src/index.html +++ b/src/index.html @@ -0,0 +1,9 @@ +<!DOCTYPE html> +<html> + <head> + <meta charset="UTF-8" /> + <title>FeedingInc</title> + <link rel="stylesheet" href="index.css" /> + <link rel="stylesheet" href="../node_modules/bootstrap/dist/css/bootstrap.min.css"> + </head> +</html> \ No newline at end of file diff --git a/src/index.js b/src/index.js index 61547be9..28929f79 100644 --- a/src/index.js +++ b/src/index.js @@ -17,7 +17,7 @@ const createWindow = () => { }); // and load the index.html of the app. - mainWindow.loadFile(path.join(__dirname, 'index.html')); + mainWindow.loadFile(path.join(__dirname, 'login.html')); // Open the DevTools. mainWindow.webContents.openDevTools(); -- GitLab