mirror of
https://github.com/go-gitea/gitea
synced 2024-11-02 16:24:25 +00:00
15 lines
545 B
Cheetah
15 lines
545 B
Cheetah
|
{{template "ng/base/head" .}}
|
||
|
{{template "ng/base/header" .}}
|
||
|
{{template "org/header" .}}
|
||
|
<div class="container">
|
||
|
<div class="invite-box">
|
||
|
{{template "ng/base/alert" .}}
|
||
|
<h3>{{.i18n.Tr "org.members.invite_desc" .Org.FullName}}</h3>
|
||
|
<form action="{{.OrgLink}}/invitations/new" method="post">
|
||
|
{{.CsrfTokenHtml}}
|
||
|
<input class="ipt ipt-large ipt-radius" name="uname" required>
|
||
|
<button class="btn btn-blue btn-large btn-radius">{{.i18n.Tr "org.members.invite_now"}}</button>
|
||
|
</form>
|
||
|
</div>
|
||
|
</div>
|
||
|
{{template "ng/base/footer" .}}
|