php-mpos/public/templates/test/login/default.tpl
Sebastian Grewe cecbcb7d4b Adding testing theme for #444
This is just a WiP to test a new website template. Taken online from
source referenced in the sidebar footer.

Very nice and clean look, have not had the time to add all features yet
and is only used to demonstrate it.
2013-08-26 20:07:54 +02:00

23 lines
787 B
Smarty

<article class="module width_half">
<form action="{$smarty.server.PHP_SELF}?page=login" method="post" id="loginForm">
<header><h3>Login with existing account</h3></header>
<div class="module_content">
<fieldset>
<label>Username</label>
<input type="text" name="username" size="22" maxlength="20" required>
</fieldset>
<fieldset>
<label>Password</label>
<input type="password" name="password" size="22" maxlength="20" required>
</fieldset>
<div class="clear"></div>
</div>
<footer>
<div class="submit_link">
<a href="{$smarty.server.PHP_SELF}?page=password"><font size="1">Forgot your password?</font></a>
<input type="submit" value="Login" class="alt_btn">
</div>
</footer>
</form>
</article>