https://github.com/akamohid/sign-up-page
π This is a STATIC (front-end only) simple sign-in page for a website! π©βπ»
Science Score: 26.0%
This score indicates how likely this project is to be science-related based on various indicators:
-
βCITATION.cff file
-
βcodemeta.json file
Found codemeta.json file -
β.zenodo.json file
Found .zenodo.json file -
βDOI references
-
βAcademic publication links
-
βAcademic email domains
-
βInstitutional organization owner
-
βJOSS paper metadata
-
βScientific vocabulary similarity
Low similarity (13.1%) to scientific vocabulary
Repository
π This is a STATIC (front-end only) simple sign-in page for a website! π©βπ»
Basic Info
- Host: GitHub
- Owner: akamohid
- License: other
- Language: HTML
- Default Branch: main
- Size: 528 KB
Statistics
- Stars: 0
- Watchers: 0
- Forks: 0
- Open Issues: 0
- Releases: 0
Metadata Files
README.md
π Web Sign-Up Page
Welcome to the Web Sign-Up Page! This repository contains a simple, static HTML-based sign-in page with a clean design, intended for beginners to learn how to structure and style an HTML form. Below is an overview of everything included, instructions to run the page, and ideas for customization.
π Project Overview
This project is a static (front-end only) sign-in page for a website. It includes:
- A login form with fields for username and password.
- A βRemember meβ checkbox.
- Links for βSign Upβ and βForgot password?β to simulate a typical authentication flow.
- Social media icons at the bottom (Facebook, WhatsApp, Twitter, Instagram).
- Styling is done entirely in CSS (embedded in
<style>tags).
There is no backend; this is purely a visual and structural demonstration. You can extend it by adding CSS files, JavaScript validation, or connecting to a real server.
π Repository Structure
SIGN-UP-PAGE/
βββ assets/ β Image assets used in the page
β βββ sss.jpg β Main logo/profile picture placeholder
β βββ fb.jpg β Facebook icon
β βββ WhatsApp.png β WhatsApp icon
β βββ twitter.png β Twitter icon
β βββ download.jpeg β Instagram icon
βββ h111.html β Main HTML file (sign-in page)
βββ README.md β This detailed overview
βββ LICENSE β MIT License (free to use)
βββ .gitignore β Git ignore rules for any temp files
π§ How to Run the Page
No server or special setup is needed:
- Clone or download this repository:
git clone https://github.com/akamohid/SIGN-UP-PAGE.git cd SIGN-UP-PAGE - Open the file
h111.htmlin any modern web browser:- On Windows, double-click the file or right-click β βOpen withβ β βYour Browserβ.
- On Mac/Linux, you can run:
bash open h111.html
- Thatβs it! You should see the styled sign-in form appear.
π¨ Detailed Code Explanation
1. HTML Structure (h111.html)
```html <!DOCTYPE html>
<!-- Form Container -->
<div class="form-container">
<h1> Login </h1>
<form>
<input type="text" placeholder="Username">
<input type="password" placeholder="Password">
<input type="checkbox" id="remember" name="remember">
<label for="remember">Remember me</label><br>
<input type="submit" value="Sign in">
</form>
<p class="sign-up-link">
Don't have an account? <a href="signup.html">Sign Up</a>
</p>
<p class="forgot-password">
<a href="forgot-password.css">Forgot password?</a>
</p>
</div>
<!-- Social Icons -->
<div class="social-icons">
<a href="#"><img src="assets/fb.jpg" alt="Facebook" width="40" height="40"></a>
<a href="#"><img src="assets/WhatsApp.png" alt="WhatsApp" width="40" height="40"></a>
<a href="#"><img src="assets/twitter.png" alt="Twitter" width="40" height="40"></a>
<a href="#"><img src="assets/download.jpeg" alt="Instagram" width="40" height="40"></a>
</div>
</div>
```
- The
<style>section provides all CSS styles:.container: Centers content, adds padding and rounded corners..main-image: Rounds the top image to look like a profile/logo circle..form-container: White box for the login form with rounded corners, fixed width, and scroll if content overflows.- Input fields: Styled for username/password with padding, border, and margin.
- Submit button: Colored with hover effect.
- Links and social icons: Simple color changes on hover.
2. Assets Folder
All image files referenced in h111.html are stored in assets/. You can replace these placeholder images with real ones (company logo, user avatar, or social media icons).
π Customization Ideas
External CSS File
Move the<style>section into a separatestyles.cssfile and link it:html <link rel="stylesheet" href="styles.css">JavaScript Validation
Add ascript.jsto validate:html <script src="script.js"></script>Responsive Design
Use media queries to adjust form size on mobile devices.Real Backend Connection
Change<form>to submit to a server endpoint and handle authentication.Sign-Up & Forgot Password Pages
Createsignup.htmlandforgot-password.htmlto complete the user flow.
π Prerequisites
- A modern web browser (Chrome, Firefox, Edge, Safari).
- No need for Node.js, Python, or any other runtime. Totally static!
π License
``` MIT License
Copyright (c) 2025 Mohid Arshad
Permission is hereby granted, free of charge, to any person obtaining a copy
...
``
(See full text inLICENSE`)
Feel free to copy, modify, and share this project.
π Contact and Feedback
Made by Mohid Arshad.
GitHub: akamohid
Email: "akamohid@gmail.com"
Live Repo: https://github.com/akamohid/SIGN-UP-PAGE
Enjoy building and customizing your own sign-up page! π
Owner
- Login: akamohid
- Kind: user
- Repositories: 1
- Profile: https://github.com/akamohid
GitHub Events
Total
- Push event: 3
- Create event: 2
Last Year
- Push event: 3
- Create event: 2