Итак присупим: Во 1 добавим и настроим под свой дизайн следующие строки CSS:
Главная » Управление дизайном » Редактирование шаблонов » Таблица стилей (CSS)
Code
Code
a.side {color:#111;text-decoration:none;}
.button {
font-family : Verdana, Arial, Helvetica, sans-serif;
font-size : 10px;
color : #555;
background-color : #BDBDBD;
height : 20px;
border : 1px solid #555;
margin-top : 2px;
}
.textbox {
font-family : Verdana, Arial, Helvetica, sans-serif;
font-size : 10px;
color : #555;
background-color : #BDBDBD;
border : 1px solid #555;
}
Когда же с CSS покончено, приступим непосредственно к самой форме входа:
Главная » Управление дизайном » Редактирование шаблонов » Форма входа пользователей
Code
<?if($PAGE_ID$="login")?>
<div style="width:180px;">
<?endif?>
<table border="0" cellspacing="1" cellpadding="0" width="100%">
<?if($ERROR$)?>
<td colspan="2" style="color:red;text-align:center;">$ERROR$</td>
<?endif?>
<tr>
<td>
<div align="center">
<font style="font-size:7pt;color:#333;">Имя</font>
<input class="textbox" type="text" name="user" value="" size="20" style="width:100px" maxlength="50" />
</div>
</td>
</tr>
<tr>
<td>
<div align="center">
<font style="font-size:7pt;color:#333;">Пароль</font>
<input class="textbox" type="password" name="password" size="20" style="width:100px" maxlength="15" />
</div>
</td>
</tr>
</table>