-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
43 lines (37 loc) · 1.61 KB
/
index.html
File metadata and controls
43 lines (37 loc) · 1.61 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
<!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>Mutual Bank</title>
<!-- Telwind css -->
<link href="https://unpkg.com/tailwindcss@^2/dist/tailwind.min.css" rel="stylesheet">
</head>
<body class="bg-blue-100">
<header>
<h1 class="text-5xl font-bold text-center mt-8">Welcome to <span class="text-purple-700">Mutual Bank</span></h1>
</header>
<main>
<section class="w-3/4 mx-auto bg-green-400 shadow-2xl p-16 mt-8 rounded-lg flex justify-center">
<div class="">
<h2 class="text-2xl mb-2 font-semibold text-white">Please Login</h2>
<div class="">
<input class="block mb-3 lg:w-96 rounded-sm px-2" type="email" name="" id="userMail"
placeholder="Enter Your Email">
<input class="block mb-3 lg:w-96 rounded-sm px-2" type="password" name="" id="userPassword"
placeholder="Enter Your Password">
<button id="login-btn" class="bg-blue-700 px-7 text-white py-1 rounded-md">Log in</button>
</div>
</div>
</section>
</main>
<footer>
<p class="text-center text-gray-700 my-5 font-bold">Developed by <a class="text-decoration-none text-indigo-700"
href="https://www.linkedin.com/in/arifulsajib/" target="_blank">Ariful Islam</a>, 2021
</p>
</footer>
<!-- javascript -->
<script src="js/login.js"></script>
</body>
</html>