-
Notifications
You must be signed in to change notification settings - Fork 1
/
welcome.php
executable file
·41 lines (39 loc) · 1.04 KB
/
welcome.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
28
29
30
31
32
33
34
35
36
37
38
39
40
41
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<TITLE>Library Management system</TITLE>
</head>
<style>
.header{ background:#F90;
height:100px;
width:100%;}
.logo{ margin:auto; margin-top:20px;}
.s:hover{ box-shadow:0px 0px 9px grey; -moz-border-radius:25px;}
h2{font-family:Verdana, Geneva, sans-serif;}
</style>
<body>
<hr />
<div class="titlepage" style="background-color:#F90">
<font face="Tahoma, Geneva, sans-serif, sans-serif" color="#006600">
<h1 align="center">THE UNIVERSITY OF TEXAS AT DALLAS</h1>
<h2 align="center">Library Management System</h2>
</font>
</div>
<hr />
<hr />
<table align="center" width="500" border="0" style="margin-top:10px;">
<tr><td>
<a href="login.php">
<h2>ADMIN LOGIN</h2>
</a>
</td>
<td align="right">
<a href="lms.php?findBooks">
<h2>VIEW BOOKS</h2>
</a>
</td>
</tr>
</table>
</body>
</html>