From 83e1ce2508ea035fb299a88fe89e82f34e609499 Mon Sep 17 00:00:00 2001 From: Vidhu Kant Sharma Date: Wed, 15 Jun 2022 15:00:33 +0530 Subject: pushing incomplete login functionality --- ui/input.go | 30 ------------------------------ 1 file changed, 30 deletions(-) (limited to 'ui/input.go') diff --git a/ui/input.go b/ui/input.go index a334943..d26d2f3 100644 --- a/ui/input.go +++ b/ui/input.go @@ -51,33 +51,3 @@ func TextInput(label, errMessage string) string { return res } - -func PasswordInput(label, errMessage string) string { - validate := func(input string) error { - if input == "" { - return errors.New(errMessage) - } - return nil - } - - template := &p.PromptTemplates { - Valid: "{{ . | cyan }}", - Invalid: "{{ . | cyan }}", - Success: "{{ . | blue }}", - } - - prompt := p.Prompt { - Label: label, - Templates: template, - Validate: validate, - Mask: '*', - } - - res, err := prompt.Run() - if err != nil { - fmt.Println("Failed to run input prompt.", err.Error()) - os.Exit(1) - } - - return res -} -- cgit v1.2.3