-
Notifications
You must be signed in to change notification settings - Fork 0
/
CustomerOtp.js
66 lines (59 loc) · 3 KB
/
CustomerOtp.js
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
import "bootstrap/dist/css/bootstrap.min.css";
import { Form, Button } from "react-bootstrap";
import { useNavigate } from "react-router-dom";
const CustomerOtp = () => {
const navigate = useNavigate();
return (
<div className="relative bg-white w-full h-[1063px] overflow-hidden text-center text-21xl text-white font-inter">
<img
className="absolute top-[0px] left-[0px] w-[1460px] h-[1063px] object-cover"
alt=""
src="/[email protected]"
/>
<button className="cursor-pointer [border:none] p-0 bg-mediumturquoise absolute top-[480px] left-[490px] rounded-21xl w-[449px] h-[69px]">GET OTP</button>>
<nav className="absolute top-[0px] left-[0px] bg-gainsboro-200 w-[1460px] h-[149px]" />
<img
className="absolute top-[13px] left-[19px] w-[125px] h-[117px] object-cover"
alt=""
src="/[email protected]"
/>
<a className="absolute top-[57px] left-[72px] text-4xl font-semibold text-[inherit] text-left inline-block w-[15px] h-[34px] [text-decoration:none]">
D
</a>
<h1 className="m-0 absolute top-[44px] left-[163px] text-[inherit] font-semibold font-inherit text-left inline-block w-[207px] h-[54px]">
<p className="m-0">DeEcomm</p>
</h1>
<h1 className="m-0 absolute top-[calc(50%_-_328.5px)] left-[calc(50%_-_194.5px)] text-[inherit] font-semibold font-inherit inline-block w-[389px] h-[68px]">
Customer Sign-Up
</h1>
<Form.Group className="w-[593px] [border:none] bg-[transparent] absolute top-[342px] left-[433px]">
<Form.Control type="text" placeholder="Enter Your Number" />
</Form.Group>
<button className="cursor-pointer [border:none] p-0 bg-[transparent] absolute top-[48px] left-[1049px] text-11xl font-imprima text-white text-left inline-block">
</button>
<Form.Group className="w-[88px] [border:none] bg-[transparent] absolute top-[643px] left-[442px]">
<Form.Control type="text" placeholder="Digit1" />
</Form.Group>
<Form.Group className="w-[88px] [border:none] bg-[transparent] absolute top-[643px] left-[600px]">
<Form.Control type="text" placeholder="Digit2" />
</Form.Group>
<Form.Group className="w-[88px] [border:none] bg-[transparent] absolute top-[643px] left-[895px]">
<Form.Control type="text" placeholder="Digit4" />
</Form.Group>
<Form.Group className="w-[88px] [border:none] bg-[transparent] absolute top-[643px] left-[730px]">
<Form.Control type="text" placeholder="DIgit3" />
</Form.Group>
<button
onClick={()=>{
navigate("/frame-component")
}}
className="cursor-pointer [border:none] p-0 bg-mediumturquoise absolute top-[843px] left-[505px] rounded-21xl w-[449px] h-[69px]">
Verify
</button>
<div className="absolute top-[284px] left-[481px] font-semibold inline-block w-[497px] h-[58px]">
Enter Your Number
</div>
</div>
);
};
export default CustomerOtp;