Button(action: {
if email.isEmpty {
print("* Email is required.")
}
else {
authorizeView()
}
}) {
HStack {
Text("NEXT")
.fontWeight(.semibold)
Image(systemName: "arrow.right")
}
.foregroundColor(.white)
.frame(width: UIScreen.main.bounds.width - 32, height: 48)
}
.background(Color(.systemBlue))
.cornerRadius(10)
.disabled(!formIsValid)
.opacity(formIsValid ? 1.0 : 0.5)