-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathwelcomeback.html
More file actions
28 lines (28 loc) · 824 Bytes
/
Copy pathwelcomeback.html
File metadata and controls
28 lines (28 loc) · 824 Bytes
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Welcome back</title>
<link rel="stylesheet" href="login.css" />
</head>
<body>
<div class="welcome-container">
<h1 class="welcome">Welcome Back!</h1>
<div class="text-center">
<h1
class="font-bold text-2xl mt-0 mb-3 text-black lg:text-black md:text-black sm:text-black"
>
Click below to go to the real Uber Eats!
</h1>
<a href="https://www.ubereats.com/gb">
<button
class="bg-black rounded text-white font-bold p-3 mb-3 w-full sm:w-80 lg:w-40 mt-1 mx-auto"
>
Click here
</button>
</a>
</div>
</div>
</body>
</html>