Skip to content

A multi-page marketing website. Showcasing who the customers are, how easy it is to work with this product and pricing plans. Taking a mobile-first approach and using modern CSS like Flexbox and Grid for layout purposes.

Notifications You must be signed in to change notification settings

Joelynn94/payapi-website

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

37 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Frontend Mentor - PayAPI multi-page website solution

This is a solution to the PayAPI multi-page website challenge on Frontend Mentor. Frontend Mentor challenges help you improve your coding skills by building realistic projects.

Table of contents

Overview

The challenge

Users should be able to:

  • View the optimal layout for each page depending on their device's screen size
  • See hover states for all interactive elements throughout the site
  • Receive an error message when the contact form is submitted if:
    • The Name, Email Address or Message fields are empty should show "This field can't be empty"
    • The Email Address is not formatted correctly should show "Please use a valid email address"

Screenshot

Links

My process

Built with

  • Semantic HTML5 markup
  • CSS custom properties
  • CSS partials
  • Flexbox
  • CSS Grid
  • JavaScript
  • Mobile-first workflow

What I learned

I am happy about the clean JavaScript utility functions I wrote to use for form validation. It made form validation much more DRY and easier to implement.

// Check if the input is empty
function isEmpty(value) {
  return value === "" ? true : false;
}

// Check if the length is between the min and max values
function isBetween(length, min, max) {
  return length < min || length > max ? false : true;
}

// Check if an email is a valid pattern
function isValidEmail(email) {
  const pattern =
    /^[a-zA-Z0-9.!#$%&'*+/=?^_`{|}~-]+@[a-zA-Z0-9-]+(?:.[a-zA-Z0-9-]+)*$/;
  return pattern.test(email);
}
// Check email input is not empty and matches email pattern
function checkEmail() {
  // Start isValid as false
  let isValid = false;
  // Trim the email input value
  const email = emailInput.value.trim();

  // Check if the email input is empty
  if (isEmpty(email)) {
    showError(emailInput, "Email cannot be blank");
    // Check if the email input is a valid pattern
  } else if (!isValidEmail(email)) {
    showError(emailInput, "Email is not valid");
    // Otherwise, clear the error and set isValid to true
  } else {
    clearError(emailInput);
    isValid = true;
  }
  return isValid;
}

Continued development

I was struggling with positioning the background circles with css. I decided to create extra media queries to control the circle size. However, I think working with the calc() css function might have been beneficial.

Author

About

A multi-page marketing website. Showcasing who the customers are, how easy it is to work with this product and pricing plans. Taking a mobile-first approach and using modern CSS like Flexbox and Grid for layout purposes.

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published