-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.htm
72 lines (50 loc) · 1.47 KB
/
index.htm
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
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
<!DOCTYPE html>
<html>
<head>
<title>ZUMBA AIR</title>
<link rel="stylesheet" type="text/css" href="zumbacss.css">
<link href="https://fonts.googleapis.com/css?family=Noto+Sans+KR|Pacifico" rel="stylesheet">
<style>
body{background:white url("A350.png")no-repeat ;
-webkit-animation: slide 40s linear infinite;
}
@-webkit-keyframes slide {
from { background-position: -200px center; }
to { background-position: 400px ; }
}
</style>
<script>
history.pushState(null, null, null);
window.addEventListener('popstate', function () {
history.pushState(null, null, null);
});
</script>
</head>
<body>
<div id="banner">
<div class="logoimg">
<img src="zumbaairlogo.png" height="140px" width="140px";>
</div>
<div class="logobrand">
<p>THE PRIDE OF AIR TRAVEL</p>
</div>
</div>
<div class="transition"></div>
<div id = "container">
<div id="Firstpage">
<form action="mealpage.php" method="POST">
<br><br>
<center><b>Please Log-in to your account</b><br><br>
<input type="int" name="comid" placeholder="Company ID" required><br><br>
<input type="password" name="password" placeholder="Password" required><br><br>
<button class="button" type="submit" id="submit_button" name="login">Log-In</button></center>
</form>
<br><br>
<br><br>
</div>
<div id="footer">
</br>
<b>© Zumba Air| [email protected] | </b></div>
</div>
</body>
</html>