blob: b6967ea1bb520fe0e984cf05aff3a431ad4c09ee (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
|
<?php
/**
* Elgg login form
*
* @package Elgg
* @subpackage Core
* @license http://www.gnu.org/licenses/old-licenses/gpl-2.0.html GNU Public License version 2
* @author Curverider Ltd
* @copyright Curverider Ltd 2008
* @link http://elgg.org/
*/
?>
<div id="login-box">
<form action="<?php echo $vars['url']; ?>action/login" method="POST">
<label>Username<br /><input name="username" type="text" class="general-textarea" /></label>
<br />
<label>Password<br /><input name="password" type="password" class="general-textarea" /></label><br />
<input type="submit" name="submit" value="login" />
</form>
</div>
|