|
|
@@ -26,16 +26,16 @@ explicit grant from the SFTPGo Team ([email protected]).
|
|
|
<div class="form-group row">
|
|
|
<label for="idEmail" data-i18n="general.email" class="col-md-3 col-form-label">Email</label>
|
|
|
<div class="col-md-9">
|
|
|
- <input type="text" class="form-control" id="idEmail" name="email" placeholder="" spellcheck="false"
|
|
|
- value="{{.Email}}" maxlength="255" autocomplete="off" {{if not .LoggedUser.CanChangeInfo}}readonly{{end}}>
|
|
|
+ <input type="text" id="idEmail" name="email" placeholder="" spellcheck="false" value="{{.Email}}" maxlength="255"
|
|
|
+ autocomplete="off" {{if not .LoggedUser.CanChangeInfo}}class="form-control-plaintext readonly-input" readonly{{else}}class="form-control"{{end}}>
|
|
|
</div>
|
|
|
</div>
|
|
|
|
|
|
<div class="form-group row mt-10">
|
|
|
<label for="idDescription" data-i18n="general.description" class="col-md-3 col-form-label">Description</label>
|
|
|
<div class="col-md-9">
|
|
|
- <input type="text" class="form-control" id="idDescription" name="description" placeholder=""
|
|
|
- value="{{.Description}}" maxlength="255" {{if not .LoggedUser.CanChangeInfo}}readonly{{end}}>
|
|
|
+ <input type="text" id="idDescription" name="description" placeholder="" value="{{.Description}}" maxlength="255"
|
|
|
+ {{if not .LoggedUser.CanChangeInfo}}class="form-control-plaintext readonly-input" readonly{{else}}class="form-control"{{end}}>
|
|
|
</div>
|
|
|
</div>
|
|
|
|