📄 loginform.ihtml
字号:
<html> <head> <title>Test for Login</title> <style type="text/css"> <!-- body { font-family: Arial, Helvetica, sans-serif } td { font-family: Arial, Helvetica, sans-serif } --> </style> </head><body bgcolor="#ffffff"><h1>Test for Login</h1>Welcome!Please identify yourself with a username and a password:<br><form action="<?php print $this->url() ?>" method=post><table border=0 bgcolor="#eeeeee" align="center" cellspacing=0 cellpadding=4> <tr valign=top align=left> <td>Username:</td> <td><input type="text" name="username" value="<?php if (isset($this->auth["uname"])) print $this->auth["uname"] ?>" size=32 maxlength=32></td> </tr> <tr valign=top align=left> <td>Password:</td> <td><input type="password" name="password" size=32 maxlength=32></td> </tr> <tr> <td> </td> <td align=right><input type="submit" name="submit" value="Login now"></td> </tr></table> <?php global $username; if ( isset($username) ): ?> <!-- failed login code --> <p> <table> <tr> <td colspan=2><font color=red><b>Either your username or your password are invalid.<br> Please try again!</b></font></td> </tr> </table> <?php endif ?></table></form></body><script language="JavaScript"><!-- if (document.forms[0][0].value != '') { document.forms[0][1].focus(); } else { document.forms[0][0].focus(); }// --></script></html><!-- $Id: loginform.ihtml,v 1.1.1.1 2000/04/17 16:40:11 kk Exp $ -->
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -