-
Notifications
You must be signed in to change notification settings - Fork 5
/
form.html
36 lines (31 loc) · 1.2 KB
/
form.html
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
<!DOCTYPE html>
<html>
<body style="background-image: url(backgnd1.png);background-position: top center; background-repeat: no-repeat;">
<div align="Center">
<br><br><br>
<div align="Left" style="border: 2px solid black; width: 645px; padding-left:30px" >
<img style="padding-top:10px; width:600px; height: 160px" src="Logo.png" alt=""/>
<h1 align="Center" style="font: bold 40px Calibri; margin-top: 5px">LOGIN</h1>
<form action="welcome.php" method="GET">
<table align="Center" style="width: 500px; height: 150px">
<tbody>
<tr>
<td><b style="font: bold 20px Calibri">User Name<br></b></td>
<td><input type="text" name="username" size="40"></td>
</tr>
<tr>
<td><b style="font: bold 20px Calibri">Password</b></td>
<td><input type="password" name="password" size="40"></td>
</tr>
<tr>
<td></td>
<td align="left"><input type="submit" value="Login to EMS System"></td>
</tr>
</tbody>
</table>
<br>
</form>
</div>
</div>
</body>
</html>