This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# Extra information | |
# Install a LAMP web server on the Amazon Linux AMI https://docs.aws.amazon.com/AWSEC2/latest/UserGuide/install-LAMP.html | |
sudo yum update -y | |
sudo yum update -y aws-cfn-bootstrap | |
sudo yum install -y aws-cli | |
sudo yum install -y amazon-linux-extras | |
sudo yum install -y httpd24 php74 | |
sudo yum install -y docker | |
sudo yum install -y php-redis |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
const usernameInput = document.getElementById("username"); | |
const passwordInput = document.getElementById("password"); | |
const telephoneInput = document.getElementById("telephone"); | |
const emailInput = document.getElementById("email"); | |
/** | |
* | |
* VALIDATORS | |
* | |
*/ |