Example #1
0
					<div class="fileUpload btn btn-primary">
						<span>Изберете файл ...</span>
						<input type="file" class="upload" id="image" name="image">
					</div>
				</div>
				<label for="vienna_classes">Класове по Виенската класификация: </label>
				<?php 
    echo frontend_input('vienna_classes', $trademark, array(), 'getViennaClasses');
    ?>
				<label for="colors">Цветове: </label>
				<?php 
    echo frontend_input('colors', $trademark, array(), 'getColors');
    ?>
				<label for="publications">Публикации (Формат: "Дата | Текст"): </label>
				<?php 
    echo frontend_textarea('publications', $trademark, array('size' => '50x3'), 'getPublications');
    ?>
			</div>
		</div>
		<div class="qfTogFmPiece">
			<h3 class="qfFmPieceHeading">Регистрационна информация</h3>
			<div class="qfTwoColsBox">
				<div class="qfTwoCol qfTwoCol01">
					<label for="application_number">Заявка номер:* </label>
					<?php 
    echo frontend_input('application_number', $trademark, array(), 'getApplicationNumber');
    ?>
					<label for="register_number">Регистров номер: </label>
					<?php 
    echo frontend_input('register_number', $trademark, array(), 'getRegisterNumber');
    ?>
Example #2
0
				<?php 
    echo frontend_input("email", null, array('class' => 'medium'));
    ?>
			</div>	
	
			<div class="field">
				<label>About <span class="obligated">*</span></label> 
				<?php 
    echo frontend_select("service", null, Lists::getListitemsForSelect("requests", array("" => "Quote")), array("class" => "serv"));
    ?>
			</div>

			<div class="field">
				<label>Message <span class="obligated">*</span></label>
				<?php 
    echo frontend_textarea("message", null, array('class' => 'large'));
    ?>
			</div>

			<div class="field">
				<label></label><img src="/user/captcha">
			</div>
				
			<div class="field">
				<label>Security </label>
				<?php 
    echo frontend_input("captcha", null, array('class' => 'small'));
    ?>
		   		<p style="margin-left:125px">Please, do smth that will prove you are not a robot</p>
			</div>			  
		
Example #3
0
                                
				<label for="rights_owner">Притежател (нов):* </label>
				<?php 
    echo frontend_input('rights_owner', $brand, array(), 'getRightsOwner');
    ?>
				<label for="rights_owner_address">Адрес на притежателя (нов): </label>
				<?php 
    echo frontend_textarea('rights_owner_address', $brand, array('size' => '50x1'), 'getRightsOwnerAddress');
    ?>
				<label for="rights_representative">Представител:* </label>
				<?php 
    echo frontend_input('rights_representative', $brand, array(), 'getRightsRepresentative');
    ?>
				<label for="rights_representative_address">Адрес на представителя: </label>
				<?php 
    echo frontend_textarea('rights_representative_address', $brand, array('size' => '50x1'), 'getRightsRepresentativeAddress');
    ?>
			</div>
<?php 
    $src = '/images/add-logo.jpg';
    if ($img = Document::getDocumentInstance($brand->getImage())) {
        $src = $img->getRelativeThumbUrl();
    }
    ?>
			<div class="qfTwoCol qfTwoCol02">
				<h3 class="qfFmPieceHeading">Лого</h3>
				<div class="qfAddLogoContainer">
					<img alt="add logo" src="<?php 
    echo $src;
    ?>
">
Example #4
0
		<tr>
			<th align="right" valign="top"><strong>Web site&nbsp;&nbsp;</strong></th>
			<td>

				<?php 
        echo frontend_input('web', $company, array('validate' => 'Web', 'onfocus' => 'validateField(\'web\',\'system/validateUrl\')'), "getWeb");
        ?>
			</td>
		</tr>

		<tr>
			<th align="right" valign="top"><strong>Description <span>*</span></strong></th>
			<td>
				<?php 
        $countFunc = " countText('description', 'textCount', 250);";
        echo frontend_textarea('description', $company, array('style' => $errdescription, 'required' => 'true', 'size' => '4x40', 'onfocus' => ' validateEditForm();' . $countFunc, 'onchange' => $countFunc, 'onkeyup' => $countFunc), "getDescription");
        ?>
			</td>
		</tr>
		<!--<tr>
			<th align="right" valign="top">&nbsp;</th>
			<td>
				Remaining symbols: <span id="textCount">150</span>
			</td>
		</tr>-->

		<?php 
        if ($logo) {
            ?>
		<tr id="company_logo">
			<th align="right" valign="top"><strong>Current CV&nbsp;&nbsp;</strong></th>