-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmobile-payment.html
More file actions
62 lines (45 loc) · 1.92 KB
/
mobile-payment.html
File metadata and controls
62 lines (45 loc) · 1.92 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Mobile Payment</title>
<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>
</head>
<body>
<main class="flex justify-center">
<div class=" ">
<div class="">
<!-- login panel start -->
<div class="hero bg-base-700 min-h-screen">
<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">
<div class="card-body">
<fieldset class="fieldset">
<h1 class="text-black text-center text-2xl"> Welcome to Mobile Payment</h1>
<img src="./assets/Group.png" class="mx-auto w-32 h-32 p-4" alt="" srcset="">
<h1 class="label-text text-black text-center text-xl">Enter Your Varification</h1>
<!-- Email Field -->
<label class="label">
<span class="label-text text-black" >Enter Your Email</span>
</label>
<input type="email" id="Email-input" class="input input-bordered text-black" placeholder="Email" />
<!-- PIN Field -->
<label class="label">
<span class="label-text text-black" autocomplete="off">4 Digit Pin Number</span>
</label>
<input type="password" id="password-input" class="input input-bordered text-black" placeholder="****" maxlength="4" />
<button class="btn btn-neutral mt-4" id="login-button">Login</button>
</fieldset>
</div>
</div>
</div>
</div>
<!-- login panel end -->
</div>
</div>
</main>
<script src="./mobile-payment.js"></script>
</body>
</html>