diff options
author | Unknown <joe2010xtmf@163.com> | 2014-06-05 22:07:35 -0400 |
---|---|---|
committer | Unknown <joe2010xtmf@163.com> | 2014-06-05 22:07:35 -0400 |
commit | 4f2f3c285717eff7a2f4ae2b79fbb0809e786dc8 (patch) | |
tree | 09e78d81573632b8638347c87d4f93d2f1c63f1b /templates/admin | |
parent | 11f9d738e8a1bce4c35bc5e1c37f5a7d1bcded5c (diff) | |
download | gitea-4f2f3c285717eff7a2f4ae2b79fbb0809e786dc8.tar.gz gitea-4f2f3c285717eff7a2f4ae2b79fbb0809e786dc8.zip |
Code convention
Diffstat (limited to 'templates/admin')
-rw-r--r-- | templates/admin/auths/edit.tmpl | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/templates/admin/auths/edit.tmpl b/templates/admin/auths/edit.tmpl index deea447c89..a2c2ddc698 100644 --- a/templates/admin/auths/edit.tmpl +++ b/templates/admin/auths/edit.tmpl @@ -71,21 +71,21 @@ <div class="form-group {{if .Err_Attributes}}has-error has-feedback{{end}}"> <label class="col-md-3 control-label">Search Attributes: </label> <div class="col-md-7"> - <input name="attributes" class="form-control" placeholder="Type search attributes" value="{{.Source.LDAP.Attributes}}" required="required"> + <input name="attributes" class="form-control" placeholder="Type search attributes" value="{{.Source.LDAP.Attributes}}"> </div> </div> <div class="form-group {{if .Err_Filter}}has-error has-feedback{{end}}"> <label class="col-md-3 control-label">Search Filter: </label> <div class="col-md-7"> - <input name="filter" class="form-control" placeholder="Type search filter" value="{{.Source.LDAP.Filter}}" required="required"> + <input name="filter" class="form-control" placeholder="Type search filter" value="{{.Source.LDAP.Filter}}"> </div> </div> <div class="form-group {{if .Err_MsAdSA}}has-error has-feedback{{end}}"> <label class="col-md-3 control-label">Ms Ad SA: </label> <div class="col-md-7"> - <input name="ms_ad_sa" class="form-control" placeholder="Type Ms Ad SA" value="{{.Source.LDAP.MsAdSAFormat}}" required="required"> + <input name="ms_ad_sa" class="form-control" placeholder="Type Ms Ad SA" value="{{.Source.LDAP.MsAdSAFormat}}"> </div> </div> {{else if eq $type 3}} |