-
Notifications
You must be signed in to change notification settings - Fork 267
/
Copy pathindex.html
66 lines (47 loc) · 2.87 KB
/
index.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
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
<!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">
<link rel="stylesheet" href="loginPage.css">
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/[email protected]/dist/css/bootstrap.min.css">
<script src="https://cdn.jsdelivr.net/npm/[email protected]/dist/jquery.slim.min.js"></script>
<script src="https://cdn.jsdelivr.net/npm/[email protected]/dist/umd/popper.min.js"></script>
<script src="https://cdn.jsdelivr.net/npm/[email protected]/dist/js/bootstrap.bundle.min.js"></script>
<script src="https://cdn.jsdelivr.net/gh/alpinejs/[email protected]/dist/alpine.min.js"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/jquery/3.2.1/jquery.min.js"></script>
<link rel="stylesheet" href="https://unpkg.com/tailwindcss@^2/dist/tailwind.min.css">
<title>Login</title>
</head>
<body>
<div class="h-screen bg-gray-500 px-3 py-5">
<div class="max-w-md mx-auto bg-white p-3 rounded">
<div class="px-3 py-1">
<div class="text-center">
<h1 class="text-2xl mb-4">Sign In</h1>
</div>
<div class="relative mb-3">
<span class="ml-2 bg-white px-2 absolute -top-3 text-sm">Email</span>
<input class="transition duration-500 border h-12 rounded w-full px-2 mb-2">
</div>
<div class="relative mb-1">
<span class="ml-2 bg-white px-2 absolute -top-3 text-sm">Password</span>
<input class="transition duration-500 border h-12 rounded w-full px-2 mb-2">
</div>
<div class="text-right mb-3">
<a href="#" class="cursor-pointer text-blue-500 hover:text-blue-700">Forgot password?</a>
</div>
<button class="h-12 w-full hover:bg-blue-800 focus:outline-none bg-gray-500 rounded text-white mb-3">Sign In</button>
<div class="mt-3">
<hr class="h-3.5 ">
<div class="relative flex justify-center">
<span class="absolute px-4 rounded -top-4 left-30 bg-white">OR </span>
</div>
</div>
<button class="h-12 w-full hover:bg-blue-800 focus:outline-none bg-red-700 rounded text-white mb-3">Sign In using Google</button>
</div>
</div>
</div>
</body>
</html>