wip
Some checks failed
CloudSave/pipeline/head There was a failure building this commit

This commit is contained in:
2025-09-12 19:06:52 +02:00
parent 57fc77755e
commit b36142c309
5 changed files with 157 additions and 81 deletions

View File

@@ -18,7 +18,7 @@ type (
)
func Make(remoteHostname string, callback func(ok bool, username, password string), w fyne.Window) *CredentialDialog {
label := canvas.NewText("Connexion to "+remoteHostname, color.Black)
label := canvas.NewText(remoteHostname, color.Black)
inputUsername := widget.NewEntry()
inputUsername.SetPlaceHolder("Username")
@@ -29,7 +29,7 @@ func Make(remoteHostname string, callback func(ok bool, username, password strin
formItems := []*widget.FormItem{
{
Text: "",
Text: "Connexion to ",
Widget: label,
},
{