Sha256: e3a8f8a26e3ab2c6a6e7ea036f6b1cf5a4f4055b78e2074256ec23e538c15970

Contents?: true

Size: 696 Bytes

Versions: 1

Compression:

Stored size: 696 Bytes

Contents

<%= error_messages_for "user" %>

<table>
  <tr>
    <th><label for="user_password"><%= _("Password") %></label></th>
    <td><%= password_field("user", "password") %></td>
  </tr>

  <tr>
    <th>
      <label for="user_password_confirmation">
        <%= _("Confirm Password") %>
      </label>
    </th>
    <td><%= password_field("user", "password_confirmation") %></td>
  </tr>
</table>

<table>
<% names = @user.attribute_names(true) - ["objectClass", "userPassword"] -%>
<% names.sort.each do |name| -%>
  <tr>
    <th><label for="user_<%=h name %>"><%= h la_(name) %></label></th>
    <td><%= text_field("user", name) %></td>
    <td><%= h lad_(name) %></td>
  </tr>
<% end -%>
</table>

Version data entries

1 entries across 1 versions & 1 rubygems

Version Path
ruby-activeldap-0.8.3.1 examples/al-admin/app/views/users/_form.rhtml