mirror of
https://github.com/Znote/ZnoteAAC.git
synced 2025-04-30 03:09:22 +02:00
26 lines
635 B
PHP
26 lines
635 B
PHP
<div class="sidebar">
|
|
<h2>Login / Register</h2>
|
|
<div class="inner">
|
|
<form action="login.php" method="post">
|
|
<ul id="login">
|
|
<li>
|
|
Username: <br>
|
|
<input type="text" name="username">
|
|
</li>
|
|
<li>
|
|
Password: <br>
|
|
<input type="password" name="password">
|
|
</li>
|
|
<li>
|
|
<input type="submit" value="Log in">
|
|
</li>
|
|
<?php
|
|
/* Form file */
|
|
Token::create();
|
|
?>
|
|
<center> <h3><a href="register.php">New account</a></h3>
|
|
<font size="1">- Lost <a href="recovery.php?mode=username">username</a> or <a href="recovery.php?mode=password">password</a>?</font></center>
|
|
</ul>
|
|
</form>
|
|
</div>
|
|
</div>
|