-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
61 lines (58 loc) · 2.86 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset=" UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>COUNSEAL Login</title>
<script src="https://cdn.tailwindcss.com"></script>
<link rel="stylesheet" href="style.css" />
</head>
<body>
<div class="h-full flex flex-wrap">
<div class="flex w-full md:w-1/2 bg-gray-100 items-center justify-center">
<div class="p-10">
<h1 class="text-4xl font-bold mb-4 text-center">COUNSEAL</h1>
<form class="login-form mb-4">
<div class="mb-4">
<label class="block text-gray-700 font-bold mb-2" for="email">
Email
</label>
<input
class="shadow appearance-none border rounded w-full py-2 px-3 text-gray-700 leading-tight focus:outline-none focus:shadow-outline"
id="email" type="email" placeholder="Email" />
</div>
<div class="mb-6">
<label class="block text-gray-700 font-bold mb-2" for="password">
Password
</label>
<input
class="shadow appearance-none border rounded w-full py-2 px-3 text-gray-700 leading-tight focus:outline-none focus:shadow-outline"
id="password" type="password" placeholder="Password" />
</div>
<div class="flex items-center mb-6">
<input class="mr-2 leading-tight" type="checkbox" id="remember-me" />
<label class="text-sm" for="remember-me">
Remember me
</label>
<span class="text-center">
<a class="inline-block align-baseline px-3 font-bold text-sm text-blue-500 hover:text-blue-800"
href="#">
Having trouble?
</a>
</span>
</div>
<div class="text-center">
<button
class="bg-blue-500 hover:bg-blue-700 text-white font-bold py-2 px-4 rounded focus:outline-none focus:shadow-outline"
type="button">
Log In
</button>
</div>
</form>
</div>
</div>
<div class="w-full md:w-1/2 bg-cover bg-center"
style="background-image: url('https://images.unsplash.com/photo-1682696936116-126db8e073d7?ixlib=rb-4.0.3&ixid=MnwxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8&auto=format&fit=crop&w=774&q=80')">
</div>
</div>
</body>