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

View file

@ -0,0 +1,12 @@
<h2><?=_('Users')?></h2>
<h3><?=_('Login')?></h3>
<form method="post" action="<?=$linker->link(array(), 2)?>">
<fieldset>
<label for="username"><?=_('Username')?></label>
<input name="username" type="text" placeholder="<?=_('Username')?>" value="<?=$username?>" /><br />
<label for="password"><?=_('Password')?></label>
<input name="password" type="password" placeholder="<?=_('Password')?>" /><br />
</fieldset>
<input type="submit" name="login" value="<?=_('Login')?>" />
</form>