<?php

    if (!preg_match("/^[a-zA-Z!]+$/", $_POST["name"]))
        print("You must provide an alphabetical name!");
    else if ($_POST["gender"] == "")
        print("You must provide your gender!");
    else
        print("Welcome to the team!");
?>
