mirror of https://github.com/gogits/gogs.git
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
23 lines
803 B
23 lines
803 B
{{template "base/head" .}} |
|
<div class="organization invite"> |
|
{{template "org/header" .}} |
|
<div class="ui container"> |
|
<div id="invite-box"> |
|
{{template "base/alert" .}} |
|
<h2>{{.i18n.Tr "org.members.invite_desc" .Org.DisplayName}}</h2> |
|
<form class="ui form" action="{{.Link}}" method="post"> |
|
{{.CsrfTokenHtml}} |
|
<div class="inline field ui left"> |
|
<div id="search-user-box"> |
|
<div class="ui input"> |
|
<input class="prompt" name="uname" placeholder="{{.i18n.Tr "repo.settings.search_user_placeholder"}}" autocomplete="off" autofocus required> |
|
</div> |
|
<div class="ui segment results hide"></div> |
|
</div> |
|
</div> |
|
<button class="ui blue button">{{.i18n.Tr "org.members.invite_now"}}</button> |
|
</form> |
|
</div> |
|
</div> |
|
</div> |
|
{{template "base/footer" .}}
|
|
|