2015-09-06 10:08:14 -04:00
{{ template "base/head" . }}
2023-02-01 19:56:10 -03:00
<div role="main" aria-label=" {{ .Title }} " class="page-content organization new org">
2015-12-07 23:30:52 +01:00
<div class="ui middle very relaxed page grid">
<div class="column">
<form class="ui form" action=" {{ .Link }} " method="post">
{{ .CsrfTokenHtml }}
<h3 class="ui top attached header">
2022-06-27 22:58:46 +02:00
{{ .locale .Tr "new_org" }}
2015-12-07 23:30:52 +01:00
</h3>
<div class="ui attached segment">
{{ template "base/alert" . }}
<div class="inline required field {{ if .Err_OrgName }} error {{ end }} ">
2022-06-27 22:58:46 +02:00
<label for="org_name"> {{ .locale .Tr "org.org_name_holder" }} </label>
2023-04-17 23:35:57 +08:00
<input id="org_name" name="org_name" value=" {{ .org_name }} " autofocus required maxlength="40">
2022-06-27 22:58:46 +02:00
<span class="help"> {{ .locale .Tr "org.org_name_helper" }} </span>
2015-12-07 23:30:52 +01:00
</div>
2015-09-06 10:08:14 -04:00
2019-03-28 18:36:17 +00:00
<div class="inline field {{ if .Err_OrgVisibility }} error {{ end }} ">
2022-06-27 22:58:46 +02:00
<span class="inline required field"><label for="visibility"> {{ .locale .Tr "org.settings.visibility" }} </label></span>
2019-07-12 19:44:28 +02:00
<div class="inline-grouped-list">
<div class="ui radio checkbox">
2023-03-28 00:05:51 +08:00
<input class="enable-system-radio" tabindex="0" name="visibility" type="radio" value="0" {{ if .DefaultOrgVisibilityMode .IsPublic }} checked {{ end }} >
2022-06-27 22:58:46 +02:00
<label> {{ .locale .Tr "org.settings.visibility.public" }} </label>
2019-07-12 19:44:28 +02:00
</div>
<div class="ui radio checkbox">
2023-03-28 00:05:51 +08:00
<input class="enable-system-radio" tabindex="0" name="visibility" type="radio" value="1" {{ if .DefaultOrgVisibilityMode .IsLimited }} checked {{ end }} >
2022-06-27 22:58:46 +02:00
<label> {{ .locale .Tr "org.settings.visibility.limited" }} </label>
2019-07-12 19:44:28 +02:00
</div>
<div class="ui radio checkbox">
2023-03-28 00:05:51 +08:00
<input class="enable-system-radio" tabindex="0" name="visibility" type="radio" value="2" {{ if .DefaultOrgVisibilityMode .IsPrivate }} checked {{ end }} >
2022-06-27 22:58:46 +02:00
<label> {{ .locale .Tr "org.settings.visibility.private" }} </label>
2019-07-12 19:44:28 +02:00
</div>
2019-02-18 17:00:27 +01:00
</div>
</div>
2019-09-23 22:08:03 +02:00
2019-10-14 20:20:42 +02:00
<div class="inline field" id="permission_box">
2022-06-27 22:58:46 +02:00
<label> {{ .locale .Tr "org.settings.permission" }} </label>
2019-10-14 20:20:42 +02:00
<div class="inline-grouped-list">
2019-09-23 22:08:03 +02:00
<div class="ui checkbox">
2023-03-28 00:05:51 +08:00
<input type="checkbox" name="repo_admin_change_team_access" checked>
2022-06-27 22:58:46 +02:00
<label> {{ .locale .Tr "org.settings.repoadminchangeteam" }} </label>
2019-09-23 22:08:03 +02:00
</div>
</div>
</div>
2015-12-07 23:30:52 +01:00
<div class="inline field">
<label></label>
<button class="ui green button">
2022-06-27 22:58:46 +02:00
{{ .locale .Tr "org.create_org" }}
2015-12-07 23:30:52 +01:00
</button>
</div>
</div>
</form>
</div>
</div>
2014-07-26 23:53:16 -04:00
</div>
2015-12-07 23:30:52 +01:00
{{ template "base/footer" . }}