Edit

kmx.io/kmxgit/lib/kmxgit_web/templates/admin/organisation/add_user.html.heex

Branch :

  • lib/kmxgit_web/templates/admin/organisation/add_user.html.heex
  • <div class="container-fluid">
    
      <h1><%= gettext "Add user to %{org}", org: @org.name || @org.slug_ %></h1>
    
      <%= form_for :organisation, @action, fn f -> %>
    
        <div class="mb-3">
          <%= label f, :login, class: "form-label" %>
          <%= text_input f, :login, class: "form=control" %>
        </div>
    
        <div class="mb-3">
          <%= submit gettext("Submit"), class: "btn btn-primary" %>
        </div>
    
      <% end %>
    </div>