Sha256: 323470f38a319b2fe91b14ba57d41d3bbbd06f57d9b50dde4d4b3871c98c9dbc

Contents?: true

Size: 1.12 KB

Versions: 3

Compression:

Stored size: 1.12 KB

Contents

<h1>User Preferences</h1>

<form method="post" action="">
  <table class="fieldset" cellpadding="0" cellspacing="0" border="0">
    <tr>
      <th class="label"><label for="user_password">Password</label></td>
      <td class="field"><%= password_field "user", "password", :class => 'textbox', :value => '', :maxlength => 40 %></td>
      <td class="help" rowspan="2">At least 5 characters. Leave password blank for it to remain unchanged.</td>
    </tr>
    <tr>
      <th class="label"><label for="user_password_confirmation">Confirm Password</label></td>
      <td class="field"><%= password_field "user", "password_confirmation", :class => 'textbox', :value => '', :maxlength => 40 %></td>
    </tr>
    <tr>
      <th class="label"><label for="user_email">E-mail</label></td>
      <td class="field"><%= text_field "user", "email", :class => 'textbox', :maxlength => 255 %></td>
      <td class="help">Optional.</td>
    </tr>
  </table>
  <p class="buttons">
    <%= save_model_button(@user) %> or <%= link_to "Cancel", admin_url %>
  </p>
</form>

<script type="text/javascript">
// <![CDATA[
  Field.focus('user_password');
// ]]>
</script>

Version data entries

3 entries across 3 versions & 1 rubygems

Version Path
radiant-0.6.5.1 app/views/admin/user/preferences.html.erb
radiant-0.6.5 app/views/admin/user/preferences.html.erb
radiant-0.6.6 app/views/admin/user/preferences.html.erb