Browse the code
| Revision log Information on the revision | |
|---|---|
| Revision: | 360 (differences) |
| Author: | xbright |
| Log message: |
* Added a personal messaging system, allowing users to communicate privately through CT (SQL schema updated) * Added pt_BR to the list of human languages |
| Change revision: | |
<h1><?=i18n('Messages');?></h1> <h2><?=i18n('Send a new message');?></h2> <p> <? if (is_string($form_error)): ?> <div class="box error"><?=$form_error;?></div> <? endif; ?> </p> <form method="post"> <p> <strong><?=i18n('Send to:');?></strong><br /> <input type="text" name="nickname" value="<?=$form_nickname;?>" /> </p> <p> <strong><?=i18n('Subject:');?></strong><br /> <input type="text" name="subject" size="50" value="<?=$form_subject;?>"/> </p> <p> <?=$textview;?> </p> <p class="center background_table_second"> <input type="submit" class="submit" value="<?=i18n('Send');?>" style="margin-bottom: 10px;" /> </p> </form>

CodingTeam