Fix checkbox field markup (#30666)
Fixes https://github.com/go-gitea/gitea/issues/30664. Previous use was not a supported way by fomantic and the misuse only became visible after the checkbox migration. (cherry picked from commit 1a2ae64b16f10b8d1e17197d18b9eb373faf58db)
This commit is contained in:
		
							parent
							
								
									bafe237375
								
							
						
					
					
						commit
						2079d61a14
					
				
					 2 changed files with 10 additions and 6 deletions
				
			
		| 
						 | 
				
			
			@ -41,9 +41,11 @@
 | 
			
		|||
			<label for="redirect-uris">{{ctx.Locale.Tr "settings.oauth2_redirect_uris"}}</label>
 | 
			
		||||
			<textarea name="redirect_uris" id="redirect-uris" required>{{StringUtils.Join .App.RedirectURIs "\n"}}</textarea>
 | 
			
		||||
		</div>
 | 
			
		||||
		<div class="field ui checkbox {{if .Err_ConfidentialClient}}error{{end}}">
 | 
			
		||||
			<label>{{ctx.Locale.Tr "settings.oauth2_confidential_client"}}</label>
 | 
			
		||||
			<input type="checkbox" name="confidential_client" {{if .App.ConfidentialClient}}checked{{end}}>
 | 
			
		||||
		<div class="field {{if .Err_ConfidentialClient}}error{{end}}">
 | 
			
		||||
			<div class="ui checkbox">
 | 
			
		||||
				<label>{{ctx.Locale.Tr "settings.oauth2_confidential_client"}}</label>
 | 
			
		||||
				<input type="checkbox" name="confidential_client" {{if .App.ConfidentialClient}}checked{{end}}>
 | 
			
		||||
			</div>
 | 
			
		||||
		</div>
 | 
			
		||||
		<button class="ui primary button">
 | 
			
		||||
			{{ctx.Locale.Tr "settings.save_application"}}
 | 
			
		||||
| 
						 | 
				
			
			
 | 
			
		|||
| 
						 | 
				
			
			@ -61,9 +61,11 @@
 | 
			
		|||
			<label for="redirect-uris">{{ctx.Locale.Tr "settings.oauth2_redirect_uris"}}</label>
 | 
			
		||||
			<textarea name="redirect_uris" id="redirect-uris"></textarea>
 | 
			
		||||
		</div>
 | 
			
		||||
		<div class="field ui checkbox {{if .Err_ConfidentialClient}}error{{end}}">
 | 
			
		||||
			<label>{{ctx.Locale.Tr "settings.oauth2_confidential_client"}}</label>
 | 
			
		||||
			<input type="checkbox" name="confidential_client" checked>
 | 
			
		||||
		<div class="field {{if .Err_ConfidentialClient}}error{{end}}">
 | 
			
		||||
			<div class="ui checkbox">
 | 
			
		||||
				<label>{{ctx.Locale.Tr "settings.oauth2_confidential_client"}}</label>
 | 
			
		||||
				<input type="checkbox" name="confidential_client" checked>
 | 
			
		||||
			</div>
 | 
			
		||||
		</div>
 | 
			
		||||
		<button class="ui primary button">
 | 
			
		||||
			{{ctx.Locale.Tr "settings.create_oauth2_application_button"}}
 | 
			
		||||
| 
						 | 
				
			
			
 | 
			
		|||
		Loading…
	
	Add table
		Add a link
		
	
		Reference in a new issue