mirror of
				https://github.com/go-gitea/gitea.git
				synced 2025-10-31 21:28:11 +09:00 
			
		
		
		
	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.
This commit is contained in:
		| @@ -41,9 +41,11 @@ | |||||||
| 			<label for="redirect-uris">{{ctx.Locale.Tr "settings.oauth2_redirect_uris"}}</label> | 			<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> | 			<textarea name="redirect_uris" id="redirect-uris" required>{{StringUtils.Join .App.RedirectURIs "\n"}}</textarea> | ||||||
| 		</div> | 		</div> | ||||||
| 		<div class="field ui checkbox {{if .Err_ConfidentialClient}}error{{end}}"> | 		<div class="field {{if .Err_ConfidentialClient}}error{{end}}"> | ||||||
| 			<label>{{ctx.Locale.Tr "settings.oauth2_confidential_client"}}</label> | 			<div class="ui checkbox"> | ||||||
| 			<input type="checkbox" name="confidential_client" {{if .App.ConfidentialClient}}checked{{end}}> | 				<label>{{ctx.Locale.Tr "settings.oauth2_confidential_client"}}</label> | ||||||
|  | 				<input type="checkbox" name="confidential_client" {{if .App.ConfidentialClient}}checked{{end}}> | ||||||
|  | 			</div> | ||||||
| 		</div> | 		</div> | ||||||
| 		<button class="ui primary button"> | 		<button class="ui primary button"> | ||||||
| 			{{ctx.Locale.Tr "settings.save_application"}} | 			{{ctx.Locale.Tr "settings.save_application"}} | ||||||
|   | |||||||
| @@ -61,9 +61,11 @@ | |||||||
| 			<label for="redirect-uris">{{ctx.Locale.Tr "settings.oauth2_redirect_uris"}}</label> | 			<label for="redirect-uris">{{ctx.Locale.Tr "settings.oauth2_redirect_uris"}}</label> | ||||||
| 			<textarea name="redirect_uris" id="redirect-uris"></textarea> | 			<textarea name="redirect_uris" id="redirect-uris"></textarea> | ||||||
| 		</div> | 		</div> | ||||||
| 		<div class="field ui checkbox {{if .Err_ConfidentialClient}}error{{end}}"> | 		<div class="field {{if .Err_ConfidentialClient}}error{{end}}"> | ||||||
| 			<label>{{ctx.Locale.Tr "settings.oauth2_confidential_client"}}</label> | 			<div class="ui checkbox"> | ||||||
| 			<input type="checkbox" name="confidential_client" checked> | 				<label>{{ctx.Locale.Tr "settings.oauth2_confidential_client"}}</label> | ||||||
|  | 				<input type="checkbox" name="confidential_client" checked> | ||||||
|  | 			</div> | ||||||
| 		</div> | 		</div> | ||||||
| 		<button class="ui primary button"> | 		<button class="ui primary button"> | ||||||
| 			{{ctx.Locale.Tr "settings.create_oauth2_application_button"}} | 			{{ctx.Locale.Tr "settings.create_oauth2_application_button"}} | ||||||
|   | |||||||
		Reference in New Issue
	
	Block a user