aboutsummaryrefslogtreecommitdiffstats
path: root/src/medsrv/templates/user/login.cs
blob: 1d6eadbbcbfebd0a15cb3c31d1ff18d40dc8fbed (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
<?cs include:"templates/header.cs" ?>
<form method="post">
<?cs if:?error ?>
  <div class="error"><?cs var:error ?></div>
<?cs /if ?>
  <table class="user">
    <tr>
      <td><label for="login">Username</label></td>
      <td><input type="text" id="login" name="login" size="30" maxlength="30" class="focus"/></td>
    </tr>
    <tr>
      <td><label for="password">Password</label></td>
      <td><input type="password" id="password" name="password" size="30"/></td>
    </tr>
    <tr>
      <td/>
      <td class="right">
        <input type="submit" value="Login" name="submit"/>
      </td>
    </tr>
</table>
</form>
<?cs include:"templates/footer.cs" ?>