-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex0.php
110 lines (79 loc) · 3.78 KB
/
index0.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
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
109
110
<?php
$server = "localhost";
$user = "root";
$password = "";
$dbname = "bikerental1";
$con = mysqli_connect($server, $user, $password, $dbname)or die("connection failed");
?>
<!DOCTYPE html>
<html>
<head>
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title> Login | Big Brothers Rental </title>
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/css/bootstrap.min.css" >
<link href="css/style.css" rel="stylesheet" type="text/css">
<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.12.4/jquery.min.js"></script>
<script src="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/js/bootstrap.min.js" ></script>
<style>
.image{
background:url("img/bikebg.jpg") no-repeat center;
}
</style>
</head>
<body class="image" style="padding-top: 100px;">
<nav class="navbar navbar-inverse 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">Big Brother Rental</a>
</div>
<div class="collapse navbar-collapse" id="myNavbar">
<ul class="nav navbar-nav navbar-right">
</ul>
</div>
</div>
</nav>
<div id="content">
<div class="container-fluid decor_bg" id="login-panel">
<div class="row">
<div class="col-md-4 col-md-offset-4">
<div class="panel panel-primary">
<div class="panel-heading">
<h4>Login</h4>
</div>
<div class="panel-body">
<p class="text-warning">Login to make booking</p>
<form role="form" action="login_info1.php" method="POST">
<div class="form-group" >
<input type="text" class="form-control" placeholder="Email" name="email" required>
</div>
<div class="form-group ">
<input type="password" class="form-control" placeholder="Password" name="password" required><br>
<a href="forgot password.php">Forgot password?</a>
</div>
<div>
<button type="Submit" value="Submit" class="btn btn-primary">Login</button><br><br>
</div>
</form><br/>
</div>
<div class="panel-footer">
<p>Don't have an account? <a href="signup.php">Register</a></p>
</div>
</div>
</div>
</div>
</div>
</div>
<footer class="footer navbar-fixed-bottom">
<div class="container">
<center>
<p>Copyright © Big Brother Rental. All Rights Reserved | Contact Us: +91 90000 00000</p>
</center>
</div>
</footer>
</body>
</html>