{"id":19589051,"url":"https://github.com/shivankk26/login-application-page","last_synced_at":"2026-04-01T20:21:46.301Z","repository":{"id":65819891,"uuid":"600644580","full_name":"ShivankK26/Login-Application-Page","owner":"ShivankK26","description":"In this Project, I've built a WebApp which can be used in various FullStack Project wherein the developer needs to create a Login Page for any Application. The Tech Stacks used in this Project are: HTML, CSS, Bootstrap, Node.js, Express.js, and EJS. ","archived":false,"fork":false,"pushed_at":"2023-04-04T08:14:18.000Z","size":1945,"stargazers_count":2,"open_issues_count":0,"forks_count":0,"subscribers_count":1,"default_branch":"main","last_synced_at":"2026-03-28T00:12:02.025Z","etag":null,"topics":["bootstrap","css","ejs","expressjs","html","nodejs"],"latest_commit_sha":null,"homepage":"","language":"JavaScript","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":null,"status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/ShivankK26.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":null,"code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null}},"created_at":"2023-02-12T05:48:57.000Z","updated_at":"2023-04-04T08:09:34.000Z","dependencies_parsed_at":null,"dependency_job_id":"2da85c39-90be-4bcb-9164-b785e50db6aa","html_url":"https://github.com/ShivankK26/Login-Application-Page","commit_stats":null,"previous_names":[],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/ShivankK26/Login-Application-Page","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/ShivankK26%2FLogin-Application-Page","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/ShivankK26%2FLogin-Application-Page/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/ShivankK26%2FLogin-Application-Page/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/ShivankK26%2FLogin-Application-Page/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/ShivankK26","download_url":"https://codeload.github.com/ShivankK26/Login-Application-Page/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/ShivankK26%2FLogin-Application-Page/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":31291520,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-04-01T13:12:26.723Z","status":"ssl_error","status_checked_at":"2026-04-01T13:12:25.102Z","response_time":53,"last_error":"SSL_read: unexpected eof while reading","robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":false,"can_crawl_api":true,"host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["bootstrap","css","ejs","expressjs","html","nodejs"],"created_at":"2024-11-11T08:16:57.752Z","updated_at":"2026-04-01T20:21:46.270Z","avatar_url":"https://github.com/ShivankK26.png","language":"JavaScript","funding_links":[],"categories":[],"sub_categories":[],"readme":"\u003c!-- ABOUT THE PROJECT --\u003e\n# About The Project\n\n![Screenshot 2023-04-04 at 12 22 30 PM](https://user-images.githubusercontent.com/115289871/229722015-3857fc64-50e0-49be-8852-93b53602c46c.png)\n\n\n\n\nIn this Project, I've built a WebApp which can be used by Developers to integrate a User Login Page in their Applications. It has a simple and attractive design and can be used by anybody.  \n\n\nUse the `README.md` to get started.\n\n\n\n\n# Built With\n\nThe Tech Stacks use are:\n\n\u003cdiv align=\"center\"\u003e\n\u003ca href=\"https://skillicons.dev\"\u003e\n    \u003cimg src=\"https://skillicons.dev/icons?i=html,css,bootstrap,nodejs,expressjs,ejs\" /\u003e\n\u003c/a\u003e\n\u003c/div\u003e\n\n\n\n\n\u003c!-- GETTING STARTED --\u003e\n# Getting Started\n\nTo get started, create a file called server.js and import all the required modules in it. After that create a folder called views and place header.ejs, base.ejs, footer.ejs and dashboard.ejs files in it. All of these are the ejs files and are used for connectivity. We'll also create another folder called public wherein we'll add all the essentials required for the front-end of the WebApp. Also, creating another folder called src is immportant for placing the database file.\n\n\n* modules\n\n  ```sh\n  const express = require('express');\n  const path = require('path');\n  const bodyParser = require('body-parser');\n  const session = require('express-session');\n  const {v4 : uuidv4} = require('uuid');\n  const router = require('./router');\n  ```\n\n* ejs connectivity\n\n  ```sh\n  app.set(\"view engine\",\"ejs\")\n  ```\n  \n* Body Parser module\n\n  ```sh\n  app.use(bodyParser.json())\n  app.use(bodyParser.urlencoded({extended: true}))\n  ```\n\n## Prerequisites\n\nTo begin with our Project, we'll need to install some npm packages like node, express, body-parser, ejs, mongo, mongoose, uuid using the command given below.\n\n* npm\n\n  ```sh\n  npm install node express body-parser ejs mongo mongoose uuid\n  ```\n  \n  \n* To ease the process of development, we'll install nodemon (Make sure you already have nodemon installed in your system, if not then [visit here](https://nodemon.io/)).\n\n  ```sh\n  npm i nodemon\n  ```\n\n\n\n\u003c!-- CONTACT --\u003e\n# Contact\n\nYour Name - Shivank Kapur - shivankkapur2004@gmail.com\n\nProject Link: \n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fshivankk26%2Flogin-application-page","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fshivankk26%2Flogin-application-page","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fshivankk26%2Flogin-application-page/lists"}