Skip to content
Open
Show file tree
Hide file tree
Changes from 4 commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion components/com_users/forms/reset_complete.xml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
<?xml version="1.0" encoding="UTF-8"?>
<form>
<fieldset name="default" label="COM_USERS_RESET_COMPLETE_LABEL">
<fieldset name="default">
<field
name="password1"
type="password"
Expand Down
2 changes: 1 addition & 1 deletion components/com_users/forms/reset_confirm.xml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
<?xml version="1.0" encoding="UTF-8"?>
<form>
<fieldset name="default" label="COM_USERS_RESET_CONFIRM_LABEL">
<fieldset name="default">
<field
name="username"
type="text"
Expand Down
2 changes: 1 addition & 1 deletion components/com_users/forms/reset_request.xml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
<?xml version="1.0" encoding="UTF-8"?>
<form>
<fieldset name="default" label="COM_USERS_RESET_REQUEST_LABEL">
<fieldset name="default">
<field
name="email"
type="email"
Expand Down
5 changes: 2 additions & 3 deletions components/com_users/tmpl/reset/complete.php
Original file line number Diff line number Diff line change
Expand Up @@ -32,9 +32,8 @@
<form action="<?php echo Route::_('index.php?task=reset.complete'); ?>" method="post" class="com-users-reset-complete__form form-validate form-horizontal well">
<?php foreach ($this->form->getFieldsets() as $fieldset) : ?>
<fieldset>
<?php if (isset($fieldset->label)) : ?>
<legend><?php echo Text::_($fieldset->label); ?></legend>
<?php endif; ?>
<legend><?php echo Text::_('COM_USERS_COMPLETE'); ?></legend>
<p><?php echo Text::_('COM_USERS_RESET_COMPLETE_LABEL'); ?><p>
<?php echo $this->form->renderFieldset($fieldset->name); ?>
</fieldset>
<?php endforeach; ?>
Expand Down
5 changes: 2 additions & 3 deletions components/com_users/tmpl/reset/confirm.php
Original file line number Diff line number Diff line change
Expand Up @@ -32,9 +32,8 @@
<form action="<?php echo Route::_('index.php?task=reset.confirm'); ?>" method="post" class="com-users-reset-confirm__form form-validate form-horizontal well">
<?php foreach ($this->form->getFieldsets() as $fieldset) : ?>
<fieldset>
<?php if (isset($fieldset->label)) : ?>
<legend><?php echo Text::_($fieldset->label); ?></legend>
<?php endif; ?>
<legend><?php echo Text::_('COM_USERS_FIELD_RESET_CONFIRM_TOKEN_LABEL'); ?></legend>
<p><?php echo Text::_('COM_USERS_RESET_CONFIRM_LABEL'); ?><p>
<?php echo $this->form->renderFieldset($fieldset->name); ?>
</fieldset>
<?php endforeach; ?>
Expand Down
5 changes: 2 additions & 3 deletions components/com_users/tmpl/reset/default.php
Original file line number Diff line number Diff line change
Expand Up @@ -32,9 +32,8 @@
<form action="<?php echo Route::_('index.php?task=reset.request'); ?>" method="post" id="user-registration" class="com-users-reset__form form-validate form-horizontal well">
<?php foreach ($this->form->getFieldsets() as $fieldset) : ?>
<fieldset>
<?php if (isset($fieldset->label)) : ?>
<legend><?php echo Text::_($fieldset->label); ?></legend>
<?php endif; ?>
<legend><?php echo Text::_('COM_USERS_RESET'); ?></legend>
<p><?php echo Text::_('COM_USERS_RESET_REQUEST_LABEL'); ?><p>
<?php echo $this->form->renderFieldset($fieldset->name); ?>
</fieldset>
<?php endforeach; ?>
Expand Down