blob: 6c646ddecb27b5b618d39e6639c7c4301096aa42 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
|
<? defined("SYSPATH") or die("No direct script access."); ?>
<fieldset id="gLogin">
<ul>
<li>
<label for="username">Username</label>
<input type="text" class="text" id="username" />
</li>
<li>
<label for="password">Password</label>
<input type="password" class="password" id="password" />
</li>
<li>
<input type="submit" class="submit" value="<?= _("Login")?>" />
</li>
<? if (!empty($error_message)): ?>
<li>
<p class="error" id="login_message">
<?= $error_message ?>
</p>
</li>
<? endif;?>
</ul>
</fieldset>
|