Dim password1, password2 as string
Console.Write("Enter password, 8-15 chars: ")
password1 = console.ReadLine()
while Password1.length > 15 Or Password1.length < 8
Console.Write("Please re-enter: ")
password1 = console.readline
Console.write("Please verify password: ")
password2 = console.ReadLine()
if password2 = password1 then
Console.writeline("Your password has beeen verified")
Console.Writeline("Your passwords do not match - please try again")