|
@@ -1,4 +1,5 @@
|
|
|
import { FC, PropsWithChildren } from "react";
|
|
|
+import HeaderBack from "@/components/HeaderBack";
|
|
|
import ButtonOwn from "@/components/ButtonOwn";
|
|
|
import DomainFooter from "@/components/DomainFooter";
|
|
|
import './page.scss'
|
|
@@ -6,12 +7,11 @@ import React from "react";
|
|
|
|
|
|
interface Props {}
|
|
|
|
|
|
-const ResetPhone: FC<PropsWithChildren<Props>> = (props) => {
|
|
|
- let amount = 50
|
|
|
- let amountList = [10,20,50,100,200,500,1000,5000,10000]
|
|
|
+const ResetPhone: FC<PropsWithChildren<Props>> = () => {
|
|
|
|
|
|
return (
|
|
|
<div className="resetPhone-box">
|
|
|
+ <HeaderBack />
|
|
|
<div className="main">
|
|
|
<div className="title">
|
|
|
<h2>Encontre sua conta</h2>
|
|
@@ -21,6 +21,7 @@ const ResetPhone: FC<PropsWithChildren<Props>> = (props) => {
|
|
|
<span className="after">+55</span>
|
|
|
<input type="tel" placeholder="Número de Celular" />
|
|
|
</div>
|
|
|
+ <div className="tips"> O número de telefone não existe. </div>
|
|
|
<div className="btnContent">
|
|
|
<ButtonOwn active={true}>Continuar</ButtonOwn>
|
|
|
</div>
|