mirror of
https://codeberg.org/forgejo/forgejo.git
synced 2026-07-25 10:57:37 +00:00
This PR pertains to the client-side validation of the Website input on user, repo, and org profiles. #12962 extends `[service].VALID_SITE_URL_SCHEMES` to cover Website fields on repo and org profiles, where before that config key only applied to the one on user profiles. If that change merges, it will then be possible to construct an HTML [`pattern`](https://developer.mozilla.org/docs/Web/HTML/Reference/Elements/input#pattern) attribute for general use on any Website form input that the server validates this way, thus enabling browsers to catch errors early relating to URL scheme confusion. This PR (1) introduces such a `pattern` attribute, and (2) adds a new UI note to make clear to users which URL schemes are permitted. This change helps explain the browser's otherwise cryptic error messages regarding pattern mismatch, while also letting users know what URI schemes the Forgejo instance supports as Website links (e.g. gemini:// URLs).  This MUST NOT merge before #12962. To do so would introduce a regression wherein the UI may suggest and validate a different set of allowed URL schemes than the server actually permits. See also #5519 Reviewed-on: https://codeberg.org/forgejo/forgejo/pulls/12991 Reviewed-by: 0ko <0ko@noreply.codeberg.org>
106 lines
5.2 KiB
Go HTML Template
106 lines
5.2 KiB
Go HTML Template
{{template "org/settings/layout_head" (dict "ctxData" . "pageClass" "organization settings options")}}
|
|
<div class="org-setting-content">
|
|
<h4 class="ui top attached header">
|
|
{{ctx.Locale.Tr "org.settings.options"}}
|
|
</h4>
|
|
<div class="ui attached segment">
|
|
<form class="ui form" action="{{.Link}}" method="post">
|
|
<label {{if .Err_Name}}class="field error"{{end}}>
|
|
{{ctx.Locale.Tr "org.org_name_holder"}}
|
|
<input id="org_name" name="name" value="{{.Org.Name}}" data-org-name="{{.Org.Name}}" autofocus required maxlength="40">
|
|
<span class="help">
|
|
{{ctx.Locale.Tr "org.settings.change_orgname_prompt"}}
|
|
{{if gt .CooldownPeriod 0}}
|
|
{{ctx.Locale.TrN .CooldownPeriod "org.settings.change_orgname_redirect_prompt.with_cooldown.one" "org.settings.change_orgname_redirect_prompt.with_cooldown.few" .CooldownPeriod}}</span>
|
|
{{else}}
|
|
{{ctx.Locale.Tr "org.settings.change_orgname_redirect_prompt"}}
|
|
{{end}}
|
|
</span>
|
|
</label>
|
|
<div class="field {{if .Err_FullName}}error{{end}}">
|
|
<label for="full_name">{{ctx.Locale.Tr "org.org_full_name_holder"}}</label>
|
|
<input id="full_name" name="full_name" value="{{.Org.FullName}}" maxlength="100">
|
|
</div>
|
|
<div class="field {{if .Err_Email}}error{{end}}">
|
|
<label for="email">{{ctx.Locale.Tr "org.settings.email"}}</label>
|
|
<input id="email" name="email" type="email" value="{{.Org.Email}}" maxlength="255">
|
|
</div>
|
|
<div class="field {{if .Err_Description}}error{{end}}">
|
|
<label for="description">{{ctx.Locale.Tr "org.org_desc"}}</label>
|
|
<textarea id="description" name="description" rows="2" maxlength="255">{{.Org.Description}}</textarea>
|
|
</div>
|
|
<div class="field {{if .Err_Website}}error{{end}}">
|
|
<label for="website">{{ctx.Locale.Tr "org.settings.website"}}</label>
|
|
<input id="website" name="website" type="url" value="{{.Org.Website}}" maxlength="255" pattern="{{.ValidSiteURLPattern}}">
|
|
<span class="help">{{ctx.Locale.Tr "form.website.valid_url_schemes" (StringUtils.Join .ValidSiteURLSchemes ", ")}}</span>
|
|
</div>
|
|
<div class="field">
|
|
<label for="location">{{ctx.Locale.Tr "org.settings.location"}}</label>
|
|
<input id="location" name="location" value="{{.Org.Location}}" maxlength="50">
|
|
</div>
|
|
|
|
<div class="divider"></div>
|
|
<div class="field" id="visibility_box">
|
|
<label for="visibility">{{ctx.Locale.Tr "org.settings.visibility"}}</label>
|
|
<div class="field">
|
|
<div class="ui radio checkbox">
|
|
<input class="enable-system-radio" name="visibility" type="radio" value="0" {{if eq .CurrentVisibility 0}}checked{{end}}>
|
|
<label>{{ctx.Locale.Tr "org.settings.visibility.public"}}</label>
|
|
</div>
|
|
</div>
|
|
<div class="field">
|
|
<div class="ui radio checkbox">
|
|
<input class="enable-system-radio" name="visibility" type="radio" value="1" {{if eq .CurrentVisibility 1}}checked{{end}}>
|
|
<label>{{ctx.Locale.Tr "org.settings.visibility.limited"}}</label>
|
|
</div>
|
|
</div>
|
|
<div class="field">
|
|
<div class="ui radio checkbox">
|
|
<input class="enable-system-radio" name="visibility" type="radio" value="2" {{if eq .CurrentVisibility 2}}checked{{end}}>
|
|
<label>{{ctx.Locale.Tr "org.settings.visibility.private"}}</label>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
|
|
<div class="field" id="permission_box">
|
|
<label>{{ctx.Locale.Tr "org.settings.permission"}}</label>
|
|
<div class="field">
|
|
<div class="ui checkbox">
|
|
<input type="checkbox" name="repo_admin_change_team_access" {{if .RepoAdminChangeTeamAccess}}checked{{end}}>
|
|
<label>{{ctx.Locale.Tr "org.settings.repoadminchangeteam"}}</label>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
|
|
{{if .SignedUser.IsAdmin}}
|
|
<div class="divider"></div>
|
|
|
|
<div class="inline field {{if .Err_MaxRepoCreation}}error{{end}}">
|
|
<label for="max_repo_creation">{{ctx.Locale.Tr "admin.users.max_repo_creation"}}</label>
|
|
<input id="max_repo_creation" name="max_repo_creation" type="number" min="-1" value="{{.Org.MaxRepoCreation}}">
|
|
<p class="help">{{ctx.Locale.Tr "admin.users.max_repo_creation_desc"}}</p>
|
|
</div>
|
|
{{end}}
|
|
|
|
<div class="field">
|
|
<button class="ui primary button">{{ctx.Locale.Tr "org.settings.update_settings"}}</button>
|
|
</div>
|
|
</form>
|
|
|
|
<div class="divider"></div>
|
|
|
|
<form class="ui form" action="{{.Link}}/avatar" method="post" enctype="multipart/form-data">
|
|
<div class="inline field">
|
|
<label for="avatar">{{ctx.Locale.Tr "settings.choose_new_avatar"}}</label>
|
|
<input name="avatar" type="file" accept="image/png,image/jpeg,image/gif,image/webp">
|
|
<br/><span class=help>{{ctx.Locale.Tr "avatar.constraints_hint" (ctx.Locale.TrSize .MaxAvatarFileSize) .MaxAvatarWidth .MaxAvatarHeight}}</span>
|
|
</div>
|
|
|
|
<div class="field button-sequence">
|
|
<button class="primary button">{{ctx.Locale.Tr "settings.update_avatar"}}</button>
|
|
<button class="danger button link-action" data-url="{{.Link}}/avatar/delete">{{ctx.Locale.Tr "settings.delete_current_avatar"}}</button>
|
|
</div>
|
|
</form>
|
|
</div>
|
|
</div>
|
|
{{template "org/settings/layout_footer" .}}
|