forked from fixin.me/fixin.me
Moved table in profile/edit and updated grid.
This commit is contained in:
parent
7729665e0b
commit
2c37865265
@ -202,6 +202,12 @@ input[type=text]:read-only {
|
|||||||
fill: #009ade;
|
fill: #009ade;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
.left{
|
||||||
|
margin-right: auto;
|
||||||
|
}
|
||||||
|
.right{
|
||||||
|
margin-left: auto;
|
||||||
|
}
|
||||||
|
|
||||||
.leftside {
|
.leftside {
|
||||||
grid-area: leftside;
|
grid-area: leftside;
|
||||||
|
@ -8,11 +8,11 @@
|
|||||||
method: :delete, onclick: {confirm: t(".confirm_delete")} %>
|
method: :delete, onclick: {confirm: t(".confirm_delete")} %>
|
||||||
</div>
|
</div>
|
||||||
<% end %>
|
<% end %>
|
||||||
|
<div class="main">
|
||||||
<%= labelled_form_for resource, url: registration_path(resource), html: {method: :patch} do |f| %>
|
<%= labelled_form_for resource, url: registration_path(resource), html: {method: :patch} do |f| %>
|
||||||
<%= f.email_field :email, size: 30, autofocus: true, autocomplete: "off" %>
|
<%= f.email_field :email, size: 30, autofocus: true, autocomplete: "off" %>
|
||||||
<% if f.object.pending_reconfirmation? %>
|
<% if f.object.pending_reconfirmation? %>
|
||||||
<%= f.text_field :unconfirmed_email, readonly: true, tabindex: -1,
|
<%= f.text_field :unconfirmed_email, readonly: true, tabindex: -1,
|
||||||
hint: t(".unconfirmed_email_hint",
|
hint: t(".unconfirmed_email_hint",
|
||||||
timestamp: f.object.confirmation_sent_at.to_fs(:db_without_sec)) %>
|
timestamp: f.object.confirmation_sent_at.to_fs(:db_without_sec)) %>
|
||||||
<% end %>
|
<% end %>
|
||||||
@ -20,11 +20,12 @@
|
|||||||
<%= f.select :status, User.statuses, readonly: true %>
|
<%= f.select :status, User.statuses, readonly: true %>
|
||||||
|
|
||||||
<%= f.password_field :password, label: t(".new_password"), size: 30,
|
<%= f.password_field :password, label: t(".new_password"), size: 30,
|
||||||
minlength: @minimum_password_length, autocomplete: "new-password",
|
minlength: @minimum_password_length, autocomplete: "new-password",
|
||||||
hint: t(".blank_password_hint",
|
hint: t(".blank_password_hint").html_safe + ("<br>").html_safe +
|
||||||
subhint: t("users.minimum_password_length", count: @minimum_password_length)) %>
|
t("users.minimum_password_length", count: @minimum_password_length) %>
|
||||||
<%= f.password_field :password_confirmation, label: t(".password_confirmation"),
|
<%= f.password_field :password_confirmation, label: t(".password_confirmation"),
|
||||||
size: 30, minlength: @minimum_password_length, autocomplete: "off" %>
|
size: 30, minlength: @minimum_password_length, autocomplete: "off" %>
|
||||||
|
|
||||||
<%= f.submit t(".update") %>
|
<%= f.submit t(".update") %>
|
||||||
|
</div>
|
||||||
<% end %>
|
<% end %>
|
||||||
|
@ -85,7 +85,7 @@ en:
|
|||||||
unconfirmed_email_hint: (since %{timestamp})
|
unconfirmed_email_hint: (since %{timestamp})
|
||||||
new_password: New password
|
new_password: New password
|
||||||
password_confirmation: Retype new password
|
password_confirmation: Retype new password
|
||||||
blank_password_hint: leave blank to keep unchanged<br>%{subhint}
|
blank_password_hint: leave blank to keep unchanged
|
||||||
update: Update profile
|
update: Update profile
|
||||||
sessions:
|
sessions:
|
||||||
new:
|
new:
|
||||||
|
Loading…
x
Reference in New Issue
Block a user