File: login.html

package info (click to toggle)
albatross 1.36-5.4
  • links: PTS
  • area: main
  • in suites: squeeze, wheezy
  • size: 2,472 kB
  • ctags: 1,822
  • sloc: python: 7,437; makefile: 148; sh: 132
file content (21 lines) | stat: -rw-r--r-- 464 bytes parent folder | download | duplicates (25)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
<html>
 <head>
  <title>Please log in</title>
 </head>
 <body>
  <h1>Please log in</h1>
  <al-form method="post">
   <table>
    <tr>
     <td>Username</td>
     <td><al-input name="username" size="10" maxlength="10"></td>
    </tr>
    <tr>
     <td>Password</td>
     <td><al-input type="password" name="passwd" size="10" maxlength="10"></td>
     <td><al-input type="submit" name="login" value="Log In"></td>
    </tr>
   </table>
  </al-form>
 </body>
</html>