diff options
Diffstat (limited to 'templates/login.tpl')
| -rw-r--r-- | templates/login.tpl | 32 |
1 files changed, 32 insertions, 0 deletions
diff --git a/templates/login.tpl b/templates/login.tpl new file mode 100644 index 0000000..c2bb0a2 --- /dev/null +++ b/templates/login.tpl @@ -0,0 +1,32 @@ +{extends file="layout.tpl"} +{block name=title}Login{/block} +{block name=navigation} +<dl> + <dt><a href="contact.php">Contact us</a></dt> + <dt><a href="categories.php">Categories</a></dt> + <dt><a href=".">Home</a></dt> +</dl> +{/block} +{block name=content} +<form action="login.php" method="post"> + <h1>{block name=title}{/block}</h1> + <div class="row"> + <label for="username"><u>U</u>sername:</label> + <input class="formw" type="text" + placeholder="Username" id="username" name="username" accesskey="u" + maxlength="100"> + </div> + <div class="row"> + <label for="password"><u>P</u>assword:</label> + <input class="formw" type="password" + placeholder="Password" id="password" name="password" accesskey="p"> + </div> + <div class="spacer"> </div> + <button type="submit" accesskey="l"> + <u>L</u>ogin + </button> + <button type="reset" accesskey="r"> + <u>R</u>eset + </button> +</form> +{/block}
\ No newline at end of file |
