Assignment 12

Your task is to make a site with a simple login system.

  1. Make a register.php page. This page should take in name, username, email, and password. When submit is pressed, the page should redirect to itself with a post. Under each input field, display the following errors in red:
    If any fields are blank
    If the password is less than 8 characters and doesn't have a number
    If the email isn't correctly formed
    If the email or username are already taken


    Otherwise, insert the account into a
    users table and redirect the user to accountcreated.php, a simple page that tells the user their account was created successfully with a link to the login page.

    Make sure you think about how to store passwords in a database. Is plain text correct? Look up password_hash and password_verify.

  2. Make a login.php page. This page should take in email OR username in the SAME field as some websites do, and a password. Pressing login will redirect the page to itself and display the following errors in red:
    If either field is blank
    If a matching combination could not be found

    Note: Why don't we want to be more specific with this error message?

    If successful the page will redirect to
    landing.php, a blank page that will just say "Logged in!" for now.