{**
* XS2:
*
* This file is developed by Solutecs, LLC for the purpose of the company
* and is provided together with XS2 Framework as and inherent part of the
* system. This file can be used on the terms of License Agreement.
*
* +7 (495) 585-0833 / 13 Rusakovskaya street, Moscow 107140 Russia
*
* @link http://www.solutecs.com
* @copyright ©1998-2007 Solutecs, LLC
* @version 1.XX
*}
<SCRIPT language="JavaScript">
{literal}
function submitForm(f){
if (f.elements['NName'].value=="") {
alert('Не заполнено поле ФИО');
return false;
}
if (f.elements['Email'].value=="") {
alert('Не заполнено поле Email');
return false;
}
if (f.elements['Experience'].value=="") {
alert('Не заполнено поле Опыт работы');
return false;
}
}
{/literal}
</SCRIPT>
{xs2GetNode NodId=$_THE.PARAMS[0] var="vacancy"}
<H1>{$vacancy.NName}</H1>
<H2>Требования</H2>
{$vacancy.Requirements}
<H2>Обязанности</H2>
{$vacancy.Duties}
{if $vacancy.Conditions}
<H2>Условия</H2>
{$vacancy.Conditions}
{/if}
{if $vacancy.Salary}
<H2>Заработная плата</H2>
{$vacancy.Salary}
{/if}
{if $vacancy.Contacts}
<H2>Контактное лицо</H2>
{$vacancy.Contacts}
{/if}
<H2>Отослать резюме</H2>
<FORM action="{xs2Href mod="vacancies" obj="vacancy" met="send"}"
onsubmit="return submitForm(this)" method="POST">
<INPUT type="hidden" name="Vacancy" value="{$item.NodId}">
<DIV class="lb">ФИО<SUP>*</SUP></DIV> <INPUT type="text" name="NName">
<DIV class="lb">Email<SUP>*</SUP></DIV> <INPUT type="text" name="Email">
<DIV class="lb">Телефон</DIV> <INPUT type="text" name="Phone">
<DIV class="lb">Образование</DIV> <TEXTAREA name="Education"></TEXTAREA>
<DIV class="lb">Опыт работы<SUP>*</SUP></DIV> <TEXTAREA name="Experience"></TEXTAREA>
<DIV class="lb">О себе</DIV> <TEXTAREA name="AboutYourself"></TEXTAREA>
<INPUT type="submit" value="Отправить">
</FORM>
|
|