character profile template with dummy data

This commit is contained in:
Daniel 2014-03-25 19:14:23 +01:00
commit 916f5ad7c9
194 changed files with 16670 additions and 0 deletions

14
views/html/users/edit.tpl Normal file
View file

@ -0,0 +1,14 @@
<h2><?=_('Users')?></h2>
<h3><?=_('Edit user')?></h3>
<form method="post">
<fieldset>
<label for="username"><?=_('Username')?>:</label>
<input type="text" name="username" placeholder="<?=_('Username')?>" value="<?=$user['username']?>" /><br />
<label for="email"><?=_('EMail-Address')?>:</label>
<input type="email" name="email" placeholder="<?=_('EMail-Address')?>" value="<?=$user['email']?>" /><br />
<label for="password"><?=_('Password')?>:</label>
<input type="password" name="password" placeholder="<?=_('Password')?>" /><br />
</fieldset>
<input type="submit" name="save" value="<?=_('save')?>" />
</form>