mirror of
https://github.com/LBRYFoundation/pool.git
synced 2025-09-21 02:19:47 +00:00
23 lines
616 B
PHP
23 lines
616 B
PHP
<?php
|
|
|
|
echo "<a href='/site/coin?id=$coin->id'>$coin->name</a> ";
|
|
echo "$market->name<br>";
|
|
|
|
$this->widget('UniForm');
|
|
|
|
echo CUFHtml::beginForm();
|
|
echo CUFHtml::errorSummary($market);
|
|
echo CUFHtml::openTag('fieldset', array('class'=>'inlineLabels'));
|
|
|
|
echo CUFHtml::openActiveCtrlHolder($market, 'deposit_address');
|
|
echo CUFHtml::activeLabelEx($market, 'deposit_address');
|
|
echo CUFHtml::activeTextField($market, 'deposit_address', array('maxlength'=>200));
|
|
echo "<p class='formHint2'>.</p>";
|
|
echo CUFHtml::closeCtrlHolder();
|
|
|
|
echo CUFHtml::closeTag('fieldset');
|
|
showSubmitButton('Save');
|
|
echo CUFHtml::endForm();
|
|
|
|
|
|
|