diff --git a/apps/assets/const/protocol.py b/apps/assets/const/protocol.py
index 8ff322fd1..f1c593522 100644
--- a/apps/assets/const/protocol.py
+++ b/apps/assets/const/protocol.py
@@ -45,7 +45,13 @@ class Protocol(ChoicesMixin, models.TextChoices):
'sftp_home': {
'type': 'str',
'default': '/tmp',
- 'label': _('SFTP home')
+ 'label': _('SFTP root'),
+ 'help_text': _(
+ 'SFTP root directory, Support variable:
'
+ '- ${ACCOUNT} The connected account username
'
+ '- ${HOME} The home directory of the connected account
'
+ '- ${USER} The username of the user'
+ )
}
}
},
diff --git a/apps/authentication/templates/authentication/login.html b/apps/authentication/templates/authentication/login.html
index 751c6f341..9c24f12c9 100644
--- a/apps/authentication/templates/authentication/login.html
+++ b/apps/authentication/templates/authentication/login.html
@@ -234,9 +234,9 @@