https://github.com/akamohid/sign-up-page

🌐 This is a STATIC (front-end only) simple sign-in page for a website! πŸ‘©β€πŸ’»

https://github.com/akamohid/sign-up-page

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
Last synced: 9 months ago · JSON representation

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
Created about 1 year ago · Last pushed about 1 year ago
Metadata Files
Readme License

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:

  1. Clone or download this repository: git clone https://github.com/akamohid/SIGN-UP-PAGE.git cd SIGN-UP-PAGE
  2. Open the file h111.html in 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
  3. That’s it! You should see the styled sign-in form appear.

🎨 Detailed Code Explanation

1. HTML Structure (h111.html)

```html <!DOCTYPE html> sign-in_page

<!-- Profile/Logo Image -->

    <!-- 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

  1. External CSS File
    Move the <style> section into a separate styles.css file and link it: html <link rel="stylesheet" href="styles.css">

  2. JavaScript Validation
    Add a script.js to validate: html <script src="script.js"></script>

  3. Responsive Design
    Use media queries to adjust form size on mobile devices.

  4. Real Backend Connection
    Change <form> to submit to a server endpoint and handle authentication.

  5. Sign-Up & Forgot Password Pages
    Create signup.html and forgot-password.html to 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

GitHub Events

Total
  • Push event: 3
  • Create event: 2
Last Year
  • Push event: 3
  • Create event: 2