-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathHotelProfile.html
97 lines (89 loc) · 2.61 KB
/
HotelProfile.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<meta http-equiv="X-UA-Compatible" content="ie=edge" />
<title>Crisp_N_Crumps | Online Food Delivery App</title>
<link rel="stylesheet" href="style1.css" />
</head>
<body background="img/reverse.png">
<nav id="navbar1">
<div id="logo1">
<img
src="img/logo11.png"
alt="Image not found. Reload or check network connection."
/>
</div>
</nav>
<section id="home1">
<h3 class="h-primary">Hotel Profile</h3>
</section>
<div class="login-box" style="position: relative; left: 602px; top: 60px">
<form name="loginForm" action="" method="post">
<h5>Hotel Name:</h5>
<div class="form-group has-feedback">
<input
type="text"
placeholder="Hotel name"
name="hotelname"
value="{{request.form.hotelname}}"
/>
</div>
<br />
<h5>Email ID:</h5>
<div class="form-group has-feedback">
<input
type="text"
placeholder="Email ID"
name="hotelmailid"
value="{{request.form.hotelmailid}}"
/>
</div>
<br />
<h5>New Password:</h5>
<div class="form-group has-feedback">
<input
type="password"
placeholder="Password"
name="hotelpassword"
value="{{request.form.hotelpassword}}"
/>
</div>
<br />
<h5>Hotel Landline:</h5>
<div class="form-group has-feedback">
<input
type="text"
placeholder="Landline No."
name="landlineno"
value="{{request.form.landlineno}}"
/>
</div>
<br />
<h5>Hotel Phone no.:</h5>
<div class="form-group has-feedback">
<input
type="text"
placeholder="Phone no."
name="hotelphoneno"
value="{{request.form.hotelphoneno}}"
/>
</div>
<br />
<h5>Location:</h5>
<div class="form-group has-feedback">
<input
type="text"
placeholder="Hotel Location"
name="hotellocation"
value="{{request.form.hotellocation}}"
/>
</div>
<br />
<input class="btn2" type="submit" value="Register" />
</form>
<br />
</div>
</body>
</html>