-
Notifications
You must be signed in to change notification settings - Fork 0
/
customersignin.html
108 lines (96 loc) · 4.23 KB
/
customersignin.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
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
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
<!DOCTYPE html>
<html lang="en">
<head>
<title>Airprice.com - airline tickets, cheap flights</title>
<meta name="language" content="english" />
<meta name="keywords" content="airprice, travel, cheap airfare, discount airfare" />
<meta http-equiv="content-type" content="text/html; charset=utf-8" />
<meta http-equiv="Content-Style-Type" content="text/css" />
<meta name="viewpoint" content="width=device-width, initial-scale=1">
<link rel="stylesheet" href="http://maxcdn.bootstrapcdn.com/bootstrap/3.3.5/css/bootstrap.min.css">
<link rel="shortcut icon" type="image/x-icon" href="https://lh3.googleusercontent.com/-HtZivmahJYI/VUZKoVuFx3I/AAAAAAAAAcM/thmMtUUPjbA/Blue_square_A-3.PNG" />
<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.11.3/jquery.min.js"></script>
<script src="http://maxcdn.bootstrapcdn.com/bootstrap/3.3.5/js/bootstrap.min.js"></script>
<link rel="stylesheet" href="forcompany.css">
<link rel="stylesheet" href="customersignin.css">
<link rel="stylesheet" href="AdminSignin.css">
<script src="login.js"> </script>
</head>
<body id="signUpPage" data-spy="scroll" data-target=".navbar" data-offset="60">
<nav class="navbar navbar-default navbar-fixed-top">
<div class="container">
<div class="navbar-header">
<button type="button" class="navbar-toggle" data-toggle="collapse" data-target="#myNavbar">
<span class="icon-bar"></span>
<span class="icon-bar"></span>
<span class="icon-bar"></span>
</button>
<a class="navbar-brand" href="homepage.html"><span class="glyphicon glyphicon-home"></span> Home</a>
</div>
<div class="collapse navbar-collapse" id="myNavbar">
<ul class="nav navbar-nav navbar-right">
<li id = "cart">
<a class="navbar-brand" href="cartshow.php"><span class="glyphicon glyphicon-shopping-cart"></span> Shopping Cart</a>
</li>
<li class="dropdown" id = "new">
<a class="dropdown-toggle" data-toggle="dropdown" href="#"><span class="glyphicon glyphicon-user"> Sign in </span><span class="caret"></span>
</a>
<ul class="dropdown-menu multi-level" role="menu" aria-labelledby="dropdownMenu">
<li><a href="signup.html">Register</a></li>
<li class="dropdown-submenu">
<a tabindex="-1" href="#">Sign in</a>
<ul class="dropdown-menu">
<li><a tabindex="-1" href="Adminpage.html">Manager Sign in</a></li>
<li><a href="customersignin.html">Customer Sign in</a></li>
</li>
</ul>
</li>
</ul>
</li>
<li class="dropdown" id = "old">
<a class="dropdown-toggle" data-toggle="dropdown" href="#" ><span class="glyphicon glyphicon-user" id="wuser">Welcom!</span>
<span class="caret"></span>
</a>
<ul class="dropdown-menu multi-level" role="menu" aria-labelledby="dropdownMenu">
<li><a href="showhistory.php">History</a></li>
<li><a href="#" id="logout">Sign out</a></li>
</ul>
</li>
</ul>
</div>
</div>
</nav>
<div class="jumbotron text-center">
<h1>Airprice.com</h1>
<p>We specialize in your air plan!</p>
</div>
<div class="container" id="signin">
<h2>Welcome , please sign-in.</h2>
<p>We want your visit to be fast and easy. Please enter your username and password to get started. If you need to set up your profile, please <a href="signup.html">register now</a>.</p>
<form action="login.php" method="post">
<div class="container" id="main">
<h3>Your username:</h3>
<input type="text" class="form-control" id="username" placeholder="Enter Your Username" name="username" required>
<h3>Your password:</h3>
<input type="password" class="form-control" id="pwd" placeholder="Enter Your Password" name="pwd" required>
</div>
<br />
<div class="col-sm-offset-2 col-sm-6">
<div class="checkbox">
<label><input type="checkbox"> Remember my username when I return</label>
</div>
</div>
<div class="col-sm-offset-2 col-sm-8">
<button type="submit" class="btn btn-success btn-block" name="btn-login">Sign In</button>
</div>
</form>
</div>
<br /><br />
<footer class="container-fluid text-center">
<a href="#signUpPage" title="To Top">
<span class="glyphicon glyphicon-chevron-up"></span>
</a>
<p>Airprice.com</p>
</footer>
</body>
</html>