-
Notifications
You must be signed in to change notification settings - Fork 48
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Login page on startup, README logo fix (#189)
* Display Login Page on StartUp for first time users 1/2 (#185) * Added checklog script * checklog to check if user logged in checklog script checks if user has already logged in before to show log in page on start * Redirect to popup after user enters login info * Readme logo fix (#188) * Removed logo * Fixed the colour of the log in button * Udated Login Page * Update README.md Co-authored-by: Pranjal Prasoon <thegreatishukumar100@gmail.com> Co-authored-by: Vishal Lokare <31512838+vishal-lokare@users.noreply.github.com> Co-authored-by: Pranjal Prasoon <79872203+motaboii@users.noreply.github.com> Co-authored-by: Sumanth Kotikalapudi <kotikalapudisumanth@gmail.com> Co-authored-by: Aditya Srinivas Menon <adityasrinivas.menon@gmail.com> Co-authored-by: Neeraj P Yetheendran <46917698+NXPY123@users.noreply.github.com> Co-authored-by: D PRIYATHAM <priyathamdarisi@gmail.com> Co-authored-by: Pranjal Prasoon <thegreatishukumar100@gmail.com> Co-authored-by: Pranjal Prasoon <79872203+motaboii@users.noreply.github.com> Co-authored-by: Sumanth Kotikalapudi <kotikalapudisumanth@gmail.com> Co-authored-by: Aditya Srinivas Menon <adityasrinivas.menon@gmail.com>
- Loading branch information
1 parent
6e67fa1
commit 2e67591
Showing
4 changed files
with
15 additions
and
4 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,7 @@ | ||
chrome.storage.local.get(["AutoJoomerUsername"], function (result) { //checks if user has logged in to show login page on opening popup | ||
if (!result.AutoJoomerUsername) { | ||
window.open("/src/pages/login/login.html", "_self"); | ||
} else { | ||
|
||
} | ||
}); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters