Jump to content

Interworx Password Change [Not Fully A Bug]


Michael

Recommended Posts

Don't think this is a bug officially but there's a cPanel name in the interworx change password form:

/components/modules/interworx/views/default/tab_client_actions.pdt

	
	<div id="change_password">
		<h4><?php $this->_("Interworx.tab_client_actions.change_password");?></h4>
		
		<?php
		$this->Form->create($this->base_uri . "services/manage/" . $this->Html->ifSet($service_id) . "/tabClientActions/");
		?>
		<div class="col-md-12">
			<div class="form-group">
				<?php
				$this->Form->label($this->_("Interworx.tab_client_actions.field_interworx_password", true), "interworx_password");
				$this->Form->fieldPassword("interworx_password", array('id' => "cpanel_password", 'class'=>"form-control", 'placeholder'=>$this->_("Interworx.tab_client_actions.field_interworx_password", true)));
				?>
			</div>
            <div class="form-group">
				<?php
				$this->Form->label($this->_("Interworx.tab_client_actions.field_interworx_confirm_password", true), "interworx_confirm_password");
				$this->Form->fieldPassword("interworx_confirm_password", array('id' => "cpanel_confirm_password", 'class'=>"form-control", 'placeholder'=>$this->_("Interworx.tab_client_actions.field_interworx_confirm_password", true)));
				?>
			</div>
		</div>
		<button class="btn btn-default pull-right">
			<i class="fa fa-edit"></i> <?php $this->_("Interworx.tab_client_actions.field_password_submit");?>
		</button>
		<?php
		$this->Form->end();
		?>
	</div>
Link to comment
Share on other sites

Guest
This topic is now closed to further replies.
×
×
  • Create New...