-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstrutils.hpp
More file actions
78 lines (67 loc) · 1.51 KB
/
Copy pathstrutils.hpp
File metadata and controls
78 lines (67 loc) · 1.51 KB
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Menu Page</title>
<style>
body {
font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
display: flex;
justify-content: center;
align-items: center;
height: 100vh;
background: linear-gradient(135deg, #0074D9, #FF4136);
margin: 0;
}
.container {
background-color: white;
padding: 2rem;
border-radius: 10px;
box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
text-align: center;
width: 90%;
max-width: 400px;
}
h1 {
color: #333;
margin-bottom: 1rem;
}
ul {
list-style: none;
padding: 0;
}
li {
margin-bottom: 2rem;
}
a {
text-decoration: none;
padding: 0.75rem 1.5rem;
background-color: #0074D9;
color: white;
border-radius: 5px;
transition: background 0.3s;
}
a:hover {
background-color: #005bb5;
}
.logout {
background-color: #FF4136;
}
.logout:hover {
background-color: #c0392b;
}
</style>
</head>
<body>
<div class="container">
<h1>ss</h1>
<ul>
<li><a href="/restaurant-detail-search">Restaurant Detail</a></li>
<li><a href="/restaurant-reserve">Reserve Restaurant</a></li>
<li><a href="/reserves">Reserves</a></li>
<li><a class="logout" href="/logout">Logout</a></li>
</ul>
</div>
</body>
</html>