Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- user_info = {
- "trilient" => "mypass",
- "admin" => "adminpass",
- }
- puts "What is your username?"
- usern = gets.chomp.downcase
- user_info.each do |username, password|
- if usern == user_info[username]
- puts "Enter Password"
- else
- puts "Incorrect username"
- end
- end
Advertisement
Add Comment
Please, Sign In to add comment