aboutsummaryrefslogtreecommitdiff
path: root/ui/input.go
diff options
context:
space:
mode:
Diffstat (limited to 'ui/input.go')
-rw-r--r--ui/input.go30
1 files changed, 0 insertions, 30 deletions
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
-}