-
Notifications
You must be signed in to change notification settings - Fork 0
/
login.html
40 lines (38 loc) · 1.46 KB
/
login.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>bookmyday - Movie Tickets, Sports, Plays, Events</title>
<link rel="stylesheet" href="index.css">
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/swiper@8/swiper-bundle.min.css"/>
<link rel="stylesheet" href="login.css">
</head>
<body>
<nav id="navbar">
<ul>
<div id="home_logo">
<a href="index.html"><img src="home_logo.png" alt=""></a>
</div>
<li class="item"><a href="movies(mysuru).html">Movies</a></li>
<li class="item"><a href="/events">Events</a></li>
<li class="item"><a href="/plays">Plays</a></li>
<li class="item"><a href="/sports">Sports</a></li>
<li class="item"><a href="/contact">Contact</a></li>
<li class="item" id="joinus"><a href="/joinus">Join Us</a></li>
</ul>
</nav>
<!-- <hr> -->
<div class="login_page">
<h1>LOGIN</h1>
<form action="connect.php" method="post">
<p>Email Addres</p>
<input type="text" name="emailAddress" placeholder="Email Address">
<p>Password</p>
<input type="password" name="password" placeholder="Password">
<button type="submit">LOG IN</button>
</form>
</div>
</body>
</html>