Files
scattport-web/application/views/user/settings.php
2011-08-11 03:41:30 +02:00

49 lines
1.4 KiB
PHP

<?php $this->load->view('header');?>
<div id="content">
<form action="#" method="post">
<div class="title">
<h2><?=_('Settings');?></h2>
</div>
<ul class="tabs">
<li class="active"><a href="#personal"><?=_('Personal Information');?></a></li>
<li><a href="#settings"><?=_('Settings');?></a></li>
</ul>
<div class="tab_container">
<div id="personal" class="tab_content">
<ul>
<?php foreach($profile_fields as $field):?>
<li>
<label><?=$field[1]?></label>
<div>
<input type="<?=$field[2]?>" name="<?=$field[0]?>" class="short text" />
</div>
</li>
<?php endforeach;?>
</ul>
</div>
<div id="settings" class="tab_content">
<ul>
<li>
<label><?=_('Language');?></label>
<div>
<select id="language_select" name="language_select" class="drop">
<option value="de">Deutsch</option>
<option value="en">Englisch</option>
</select>
</div>
</li>
<li>
<input type="checkbox" id="projects_sortrecently" name="projects_sortrecently" value="1" class="checkbox"/>
<label for="projects_sortrecently"><?=_('Sort projects by date of the last access');?></label><br />
<label class="note"><?=_('If the projects are sorted by the data of the last access, the rarely used projects &quot;slip&quot; to the end of the list.');?></label>
</li>
</ul>
</div>
</div>
</form>
</div>
<?php $this->load->view('footer'); ?>