-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
33 lines (31 loc) · 1.04 KB
/
index.html
File metadata and controls
33 lines (31 loc) · 1.04 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Travel Agency Login</title>
<link rel="stylesheet" href="css/style.css" />
</head>
<body>
<main>
<section class="card">
<img src="./icons/twitter.svg" alt="icon twitter svg" />
<h1>Tripify</h1>
<h3>Explore your dream destinations</h3>
<p class="welcome">
Welcome to Tripify! Please enter your login credentials to access your
account and explore our wide range of travel options.
</p>
<hr />
<form class="form" action="" method="POST">
<label for="Email">Email</label>
<input type="email" name="Email" id="Email" />
<label for="Password">Password</label>
<input type="password" name="Password" id="Password" />
<button>Log In</button>
<p>Don't have an account? <span>Register</span></p>
</form>
</section>
</main>
</body>
</html>