-
Notifications
You must be signed in to change notification settings - Fork 0
/
admin.php
27 lines (26 loc) · 1.02 KB
/
admin.php
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
<?php
$_POST['page-title'] = "Admin";
$_POST['page-link1'] = "<link rel='icon' href='http:favicon.ico' type='image/ico' />";
$_POST['page-link2'] = "<link href='styles/main0905.css' rel='stylesheet' type='text/css'>";
include_once 'includes/page-top.php';
?>
<form action="admin_login.php" method="post" enctype="application/x-www-form-urlencoded" name="login" id="login">
<div class="subtitle">
<table align="center" border="0" cellspacing="0" class="subtitle" cellpadding="5">
<tr>
<td> TxState Net ID </td>
<td><input name="uid" type="text" class="searchbox" id="uid" size="15" /></td>
</tr>
<tr>
<td> Password </td>
<td><input name="passwd" type="password" class="form_elements_text" id="passwd" size="15" /></td>
</tr>
<tr>
<td> </td>
<td align='right'><input type="submit" value='Login' /></td>
</tr>
</table>
</div>
</form>
</body>
</html>