Files
RobinNixon 53063593e3 Final
Final
2020-12-10 13:51:13 +00:00

11 lines
138 B
PHP

<?php
User::pwd_string();
class User
{
static function pwd_string()
{
echo "Please enter your password";
}
}
?>