1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
|
<?php
/* ___________________________________________________
project : asn forum version 2.0 file : login.php author : asn - script@tourdebali.com ___________________________________________________
*/ include("config.php");
include("wb_header.php");
echo " <h1>ผู้ดูแลเว็บบอร์ด</h1> <div style='clear:both'></div> <form method='post' action='admin.php' style='margin-top:30px'> <table width=90% cellpadding=3 cellspacing=0 border=0> <tr><td> <font face='arial, helvetica' size=3>"; if ($error == "1") { echo "<font color=#ff0000>Invalid Username and/or Password!</font>"; } else { echo "Please enter user name and password:"; } echo " </font><P> <font face='arial, helvetica' size=2><b>User Name:</b></font><br> <input type='text' name='vadmin' size='40' maxlength=100><br> <font face='arial, helvetica' size=2><b>Password:</b></font><br> <input type='password' name='vpassword' size='20' maxlength=20><p> <input type='submit' value='Login'> <br><br> </td></tr> </table> </form> "; echo "<hr size=1 noshase><br>";
include("wb_footer.php");
?>
|