
├── .github └── workflows │ ├── linters.yml │ └── linters.yml ├── .gitignore ├── .hintrc ├── README.md ├── images ├── .github │ └── workflows │ │ └── linters.yml ├── company-logo.jpg ├── icon-1.jpg ├── icon-2.jpg ├── icon-3.jpg └── page_screenshot1.png ├── index.html └── style.css /.github/workflows/linters.yml: -------------------------------------------------------------------------------- 1 | name: Linters 2 | 3 | on: pull_request 4 | 5 | env: 6 | FORCE_COLOR: 1 7 | 8 | jobs: 9 | lighthouse: 10 | name: Lighthouse 11 | runs-on: ubuntu-18.04 12 | steps: 13 | - uses: actions/checkout@v2 14 | - uses: actions/setup-node@v1 15 | with: 16 | node-version: "12.x" 17 | - name: Setup Lighthouse 18 | run: npm install -g @lhci/cli@0.4.x 19 | - name: Lighthouse Report 20 | run: lhci autorun --upload.target=temporary-public-storage --collect.staticDistDir=. 21 | webhint: 22 | name: Webhint 23 | runs-on: ubuntu-18.04 24 | steps: 25 | - uses: actions/checkout@v2 26 | - uses: actions/setup-node@v1 27 | with: 28 | node-version: "12.x" 29 | - name: Setup Webhint 30 | run: | 31 | npm install --save-dev hint@6.0.x 32 | [ -f .hintrc ] || wget https://raw.githubusercontent.com/microverseinc/linters-config/master/html-css/.hintrc 33 | - name: Webhint Report 34 | run: npx hint --telemetry=off . 35 | stylelint: 36 | name: Stylelint 37 | runs-on: ubuntu-18.04 38 | steps: 39 | - uses: actions/checkout@v2 40 | - uses: actions/setup-node@v1 41 | with: 42 | node-version: "12.x" 43 | - name: Setup Stylelint 44 | run: | 45 | npm install --save-dev stylelint@13.3.x stylelint-scss@3.17.x stylelint-config-standard@20.0.x 46 | [ -f .stylelintrc.json ] || wget https://raw.githubusercontent.com/microverseinc/linters-config/master/html-css/.stylelintrc.json 47 | - name: Stylelint Report 48 | run: npx stylelint "**/*.{css,scss}" 49 | -------------------------------------------------------------------------------- /.github/workflows/linters.yml : -------------------------------------------------------------------------------- 1 | name: Linters 2 | 3 | on: pull_request 4 | 5 | env: 6 | FORCE_COLOR: 1 7 | 8 | jobs: 9 | lighthouse: 10 | name: Lighthouse 11 | runs-on: ubuntu-18.04 12 | steps: 13 | - uses: actions/checkout@v2 14 | - uses: actions/setup-node@v1 15 | with: 16 | node-version: "12.x" 17 | - name: Setup Lighthouse 18 | run: npm install -g @lhci/cli@0.4.x 19 | - name: Lighthouse Report 20 | run: lhci autorun --upload.target=temporary-public-storage --collect.staticDistDir=. 21 | webhint: 22 | name: Webhint 23 | runs-on: ubuntu-18.04 24 | steps: 25 | - uses: actions/checkout@v2 26 | - uses: actions/setup-node@v1 27 | with: 28 | node-version: "12.x" 29 | - name: Setup Webhint 30 | run: | 31 | npm install --save-dev hint@6.0.x 32 | [ -f .hintrc ] || wget https://raw.githubusercontent.com/microverseinc/linters-config/master/html-css/.hintrc 33 | - name: Webhint Report 34 | run: npx hint --telemetry=off . 35 | stylelint: 36 | name: Stylelint 37 | runs-on: ubuntu-18.04 38 | steps: 39 | - uses: actions/checkout@v2 40 | - uses: actions/setup-node@v1 41 | with: 42 | node-version: "12.x" 43 | - name: Setup Stylelint 44 | run: | 45 | npm install --save-dev stylelint@13.3.x stylelint-scss@3.17.x stylelint-config-standard@20.0.x 46 | [ -f .stylelintrc.json ] || wget https://raw.githubusercontent.com/microverseinc/linters-config/master/html-css/.stylelintrc.json 47 | - name: Stylelint Report 48 | run: npx stylelint "**/*.{css,scss}" -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | package-lock.json 3 | .DS_Store -------------------------------------------------------------------------------- /.hintrc: -------------------------------------------------------------------------------- 1 | // 20200604222429 2 | // https://raw.githubusercontent.com/microverseinc/linters-config/master/html-css/.hintrc 3 | 4 | { 5 | "connector": { 6 | "name": "local", 7 | "options": { 8 | "pattern": [ 9 | "**", 10 | "!.git/**", 11 | "!node_modules/**" 12 | ] 13 | } 14 | }, 15 | "extends": [ 16 | "development" 17 | ], 18 | "formatters": [ 19 | "stylish" 20 | ], 21 | "hints": [ 22 | "button-type", 23 | "disown-opener", 24 | "html-checker", 25 | "meta-charset-utf-8", 26 | "meta-viewport" 27 | ] 28 | } -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # HTML Forms 2 | 3 | > This is the clone mint.com’s sign up page. Prepared for as a collaboration project with my coding partner Rocio from Microverse. 4 | This project's name is "HTML Forms" in Microverse. 5 | 6 |  7 | 8 | ## Built With 9 | 10 | - HTML and CSS 11 | - without any extra css library 12 | 13 | ## Live Demo 14 | 15 | [Live Demo Link](https://rawcdn.githack.com/RaminMammadzada/html-forms/9a645feda691f9a9afe2c98eef15299580551152/index.html) 16 | 17 | ## Authors 18 | 19 | 👤 **Ramin Mammadzada** 20 | 21 | - Github: [@raminmammadzada](https://github.com/raminmammadzada) 22 | - Twitter: [@raminmammadzada](https://twitter.com/raminmammadzada) 23 | - Linkedin: [raminmammadzada](https://linkedin.com/raminmammadzada) 24 | 25 | 👤 **Zulma Rocio** 26 | 27 | - Github: [@rocio01](https://github.com/Rocio01) 28 | - Twitter: [@rugiada8801](https://twitter.com/rugiada8801) 29 | - Linkedin: [zulma-martinez-5247a31a8](https://www.linkedin.com/in/zulma-martinez-5247a31a8) 30 | 31 | ## 🤝 Contributing 32 | 33 | Contributions, issues and feature requests are welcome! 34 | 35 | Feel free to check the [issues page](issues/). 36 | 37 | ## Show your support 38 | 39 | Give a ⭐️ if you like this project! 40 | 41 | ## 📝 License 42 | 43 | This project is [MIT](lic.url) licensed. -------------------------------------------------------------------------------- /images/.github/workflows/linters.yml: -------------------------------------------------------------------------------- 1 | name: Linters 2 | 3 | on: pull_request 4 | 5 | env: 6 | FORCE_COLOR: 1 7 | 8 | jobs: 9 | lighthouse: 10 | name: Lighthouse 11 | runs-on: ubuntu-18.04 12 | steps: 13 | - uses: actions/checkout@v2 14 | - uses: actions/setup-node@v1 15 | with: 16 | node-version: "12.x" 17 | - name: Setup Lighthouse 18 | run: npm install -g @lhci/cli@0.4.x 19 | - name: Lighthouse Report 20 | run: lhci autorun --upload.target=temporary-public-storage --collect.staticDistDir=. 21 | webhint: 22 | name: Webhint 23 | runs-on: ubuntu-18.04 24 | steps: 25 | - uses: actions/checkout@v2 26 | - uses: actions/setup-node@v1 27 | with: 28 | node-version: "12.x" 29 | - name: Setup Webhint 30 | run: | 31 | npm install --save-dev hint@6.0.x 32 | [ -f .hintrc ] || wget https://raw.githubusercontent.com/microverseinc/linters-config/master/html-css/.hintrc 33 | - name: Webhint Report 34 | run: npx hint --telemetry=off . 35 | stylelint: 36 | name: Stylelint 37 | runs-on: ubuntu-18.04 38 | steps: 39 | - uses: actions/checkout@v2 40 | - uses: actions/setup-node@v1 41 | with: 42 | node-version: "12.x" 43 | - name: Setup Stylelint 44 | run: | 45 | npm install --save-dev stylelint@13.3.x stylelint-scss@3.17.x stylelint-config-standard@20.0.x 46 | [ -f .stylelintrc.json ] || wget https://raw.githubusercontent.com/microverseinc/linters-config/master/html-css/.stylelintrc.json 47 | - name: Stylelint Report 48 | run: npx stylelint "**/*.{css,scss}" -------------------------------------------------------------------------------- /images/company-logo.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaminMammadzada/html-forms/d97d0b64031b42793b8a708e755563e4264a3868/images/company-logo.jpg -------------------------------------------------------------------------------- /images/icon-1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaminMammadzada/html-forms/d97d0b64031b42793b8a708e755563e4264a3868/images/icon-1.jpg -------------------------------------------------------------------------------- /images/icon-2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaminMammadzada/html-forms/d97d0b64031b42793b8a708e755563e4264a3868/images/icon-2.jpg -------------------------------------------------------------------------------- /images/icon-3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaminMammadzada/html-forms/d97d0b64031b42793b8a708e755563e4264a3868/images/icon-3.jpg -------------------------------------------------------------------------------- /images/page_screenshot1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaminMammadzada/html-forms/d97d0b64031b42793b8a708e755563e4264a3868/images/page_screenshot1.png -------------------------------------------------------------------------------- /index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 |
5 | 6 | 7 |