-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
140 lines (101 loc) · 5.26 KB
/
index.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
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
<!DOCTYPE html>
<html lang="en">
<head>
<title>Entry Management</title>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/4.3.1/css/bootstrap.min.css">
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.4.1/jquery.min.js"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/popper.js/1.14.7/umd/popper.min.js"></script>
<script src="https://maxcdn.bootstrapcdn.com/bootstrap/4.3.1/js/bootstrap.min.js"></script>
</head>
<body>
<!DOCTYPE html>
<html lang="en">
<head>
<title>Bootstrap Example</title>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.4.0/css/bootstrap.min.css">
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.4.1/jquery.min.js"></script>
<script src="https://maxcdn.bootstrapcdn.com/bootstrap/3.4.0/js/bootstrap.min.js"></script>
</head>
<body style="background-image: url(data/img1.jpg) ; background-repeat: no-repeat; height: 100%; font-family: 'Ibarra Real Nova', serif;
/* Center and scale the image nicely */
background-position: center;
background-repeat: no-repeat;
background-size: cover;
background-attachment: fixed; "><b>
<nav class="navbar navbar-default" style="background-color:rgb(256,256,256,1);" ;>
<div class="container-fluid">
<div class="navbar-header">
<h1>Innovaccer</h1>
</div>
<ul class="nav navbar-nav">
<li><a href="index.html">Check-in</a></li>
<li><a href="checkout.php">Check-out</a></li>
<li><a href="list.php"> List of all customers </a></li>
</ul>
</div>
</nav>
<br>
<div class="container" style="background-color:rgb(256,256,256,1);">
<h1>
<center><b>Register<b></b></center>
</h1>
<form action="checkin.php" method="post">
<div class="row">
<div class="col-lg-6">
<h2> Visiter details</h2>
<div class="form-group">
<label for="text">Name:</label>
<input type="text" class="form-control" id="text" placeholder="Enter name" name="name"
required>
</div>
<div class="form-group">
<label for="email">Email:</label>
<input type="email" class="form-control" id="email" placeholder="Enter email"
name="email" required>
</div>
<div class="form-group">
<label for="text">Phone:</label>
<input type="text" class="form-control" id="phone" placeholder="Enter phone no"
name="phone" required>
</div>
<!-- <div class="form-group">
<label for="text">Check in:</label>
<input type="datetime" class="form-control" id="ckeckin" placeholder="Enter ckeckin time"
name="checkin">
</div> -->
</div>
<div class=" col-lg-6">
<h2> Host details</h2>
<div class="form-group">
<label for="text">Name:</label>
<input type="text" class="form-control" id="nameh" placeholder="Enter name" name="nameh"
required>
</div>
<div class="form-group">
<label for="email">Email:</label>
<input type="email" class="form-control" id="emailh" placeholder="Enter email" required
name="emailh">
</div>
<div class="form-group">
<label for="text">Phone:</label>
<input type="text" class="form-control" id="phoneh" placeholder="Enter phone no"
required name="phoneh">
</div>
</div>
</div>
<h4 style=" color: red;"> Note: We are taking check-in time from system </h4>
<div class="row">
<div class="col-lg-4"></div>
<div class="col-lg-6">
<button type="submit" class="btn btn-primary">Submit</button></div>
<div class="col-lg-2"></div>
</div>
</form>
</div>
</div>
</body>
</html>