-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
43 lines (40 loc) · 1.73 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Document</title>
<link href="https://cdn.jsdelivr.net/npm/[email protected]/daisyui.css" rel="stylesheet" type="text/css" />
<script src="https://cdn.jsdelivr.net/npm/@tailwindcss/browser@4"></script>
</head>
<body class="bg-slate-800">
<section class="max-w-md min-h-screen mx-auto py-6 bg-gray-200">
<header>
<nav class="flex justify-center items-center mt-6">
<div class="mt-10 relative flex justify-center items-center w-9/12 mb-10">
<img class="w-48 absolute" src="./assets/bg.png" alt="">
<img class="w-16 " src="./assets/Group.png" alt="">
</div>
</nav>
</header>
<!-- login section -->
<div class="">
<div class="hero-content flex-col lg:flex-row-reverse">
<div class="card bg-base-100 w-full max-w-sm shrink-0 shadow-2xl">
<form class="card-body">
<fieldset class="fieldset">
<label class="fieldset-label">Acount number</label>
<input value="01301301302" id="Acount-nunber" type="number" maxlength="11" class="input" placeholder="type your number" required/>
<label class="fieldset-label">PIN</label>
<input value="1234" id="pin" type="text" class="input" placeholder="type your PIN" required/>
<div><a class="link link-hover">Forgot password?</a></div>
<button type="submit" id="login-btn" class="btn btn-neutral mt-4">Login</button>
</fieldset>
</form>
</div>
</div>
</div>
</section>
<script src="./script/login.js"></script>
</body>
</html>