#1579 change e-mail max length to 254
This commit is contained in:
		
							parent
							
								
									d023e81a8f
								
							
						
					
					
						commit
						07fe846c9f
					
				
					 4 changed files with 8 additions and 7 deletions
				
			
		|  | @ -4,6 +4,7 @@ | |||
| Akihiro YAGASAKI <yaggytter@momiage.com> | ||||
| Alexander Steinhöfer <kontakt@lx-s.de> | ||||
| Alexandre Magno <alexandre.mbm@gmail.com> | ||||
| Barış Arda Yılmaz <ardayilmazgamer@gmail.com> | ||||
| Christoph Kisfeld <christoph.kisfeld@gmail.com> | ||||
| Daniel Speichert <daniel@speichert.pl> | ||||
| Gregor Santner <gdev@live.de> | ||||
|  |  | |||
|  | @ -12,7 +12,7 @@ import ( | |||
| 
 | ||||
| type AdminEditUserForm struct { | ||||
| 	FullName     string `form:"fullname" binding:"MaxSize(100)"` | ||||
| 	Email        string `binding:"Required;Email;MaxSize(50)"` | ||||
| 	Email        string `binding:"Required;Email;MaxSize(254)"` | ||||
| 	Password     string `binding:"OmitEmpty;MinSize(6);MaxSize(255)"` | ||||
| 	Website      string `binding:"MaxSize(50)"` | ||||
| 	Location     string `binding:"MaxSize(50)"` | ||||
|  |  | |||
|  | @ -59,7 +59,7 @@ func (f *InstallForm) Validate(ctx *macaron.Context, errs binding.Errors) bindin | |||
| 
 | ||||
| type RegisterForm struct { | ||||
| 	UserName  string `form:"uname" binding:"Required;AlphaDashDot;MaxSize(35)"` | ||||
| 	Email     string `form:"email" binding:"Required;Email;MaxSize(50)"` | ||||
| 	Email     string `form:"email" binding:"Required;Email;MaxSize(254)"` | ||||
| 	Password  string `form:"password" binding:"Required;MaxSize(255)"` | ||||
| 	Retype    string `form:"retype"` | ||||
| 	LoginType string `form:"logintype"` | ||||
|  | @ -71,7 +71,7 @@ func (f *RegisterForm) Validate(ctx *macaron.Context, errs binding.Errors) bindi | |||
| } | ||||
| 
 | ||||
| type SignInForm struct { | ||||
| 	UserName string `form:"uname" binding:"Required;MaxSize(35)"` | ||||
| 	UserName string `form:"uname" binding:"Required;MaxSize(254)"` | ||||
| 	Password string `form:"password" binding:"Required;MaxSize(255)"` | ||||
| 	Remember bool   `form:"remember"` | ||||
| } | ||||
|  | @ -90,10 +90,10 @@ func (f *SignInForm) Validate(ctx *macaron.Context, errs binding.Errors) binding | |||
| type UpdateProfileForm struct { | ||||
| 	UserName string `form:"uname" binding:"Required;MaxSize(35)"` | ||||
| 	FullName string `form:"fullname" binding:"MaxSize(100)"` | ||||
| 	Email    string `form:"email" binding:"Required;Email;MaxSize(50)"` | ||||
| 	Email    string `form:"email" binding:"Required;Email;MaxSize(254)"` | ||||
| 	Website  string `form:"website" binding:"Url;MaxSize(100)"` | ||||
| 	Location string `form:"location" binding:"MaxSize(50)"` | ||||
| 	Avatar   string `form:"avatar" binding:"Required;Email;MaxSize(50)"` | ||||
| 	Avatar   string `form:"avatar" binding:"Required;Email;MaxSize(254)"` | ||||
| } | ||||
| 
 | ||||
| func (f *UpdateProfileForm) Validate(ctx *macaron.Context, errs binding.Errors) binding.Errors { | ||||
|  |  | |||
|  | @ -89,7 +89,7 @@ | |||
|           </div> | ||||
|           <div class="inline required field"> | ||||
|             <label for="domain">{{.i18n.Tr "install.domain"}}</label> | ||||
|             <input id="domain" name="domain" value="{{.domain}}" required> | ||||
|             <input id="domain" name="domain" value="{{.domain}}" placeholder="e.g. try.gogs.io" required> | ||||
|             <span class="help">{{.i18n.Tr "install.domain_helper"}}</span> | ||||
|           </div> | ||||
|           <div class="inline required field"> | ||||
|  | @ -104,7 +104,7 @@ | |||
|           </div> | ||||
|           <div class="inline required field"> | ||||
|             <label for="app_url">{{.i18n.Tr "install.app_url"}}</label> | ||||
|             <input id="app_url" name="app_url" value="{{.app_url}}" required> | ||||
|             <input id="app_url" name="app_url" value="{{.app_url}}" placeholder="e.g. https://try.gogs.io" required> | ||||
|             <span class="help">{{.i18n.Tr "install.app_url_helper"}}</span> | ||||
|           </div> | ||||
| 
 | ||||
|  |  | |||
		Loading…
	
		Reference in a new issue