-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
67 lines (54 loc) · 2.41 KB
/
index.html
File metadata and controls
67 lines (54 loc) · 2.41 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
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Cashora Login </title>
<link rel="shortcut icon" href="./assets/Group.png" type="image/x-icon">
<!-- tailwind and daisy CDN -->
<link href="https://cdn.jsdelivr.net/npm/daisyui@5" rel="stylesheet" type="text/css" />
<script src="https://cdn.jsdelivr.net/npm/@tailwindcss/browser@4"></script>
<!-- outfit font -->
<style>
@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@100..900&display=swap');
body {
font-family: "Outfit", sans-serif;
}
/* Chrome, Safari, Edge - spinner (↑ ↓) Hide*/
input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
-webkit-appearance: none;
margin: 0;
}
</style>
</head>
<body class="h-screen ">
<!-- Login form -->
<form action="
">
<div class="flex justify-center items-center h-screen bg-black ">
<fieldset class=" w-xs bg-[#c8c8c9] h-screen">
<div class=" p-4 justify-center items-center ">
<!-- image -->
<div class="relative py-15 ">
<img class=" pb-6 absolute" src="./assets/bg.png" alt="">
<img class=" pl-28 py-4 items-center" src="./assets/Group.png" alt="">
</div>
<!-- form start -->
<div class="bg-white rounded-xl p-3 ">
<label class="label font-bold text-black text-sm">Mobile Number</label>
<input id="mobileNumber" type="number" class=" input rounded-4xl p-3 border-none bg-[#dcdcdd] "
placeholder="Enter Your Number" value="01751920983" />
<label class="label font-bold text-black text-sm">4 Digit Pin</label>
<input id="pinNumber" type="number" class="input rounded-4xl p-3 border-none bg-[#dcdcdd] "
placeholder="Pin Number" value="1234" />
<button id="login-btn"
class="btn bg-[#0874F2] mt-4 rounded-full w-full text-white">Login</button>
</div>
</div>
</fieldset>
</div>
</form>
<script src="./script.js"></script>
</body>
</html>