| Línea 41... |
Línea 41... |
| 41 |
<div className="acc-setting h-100" style={{ position: "relative" }}>
|
41 |
<div className="acc-setting h-100" style={{ position: "relative" }}>
|
| 42 |
<div className="container">
|
42 |
<div className="container">
|
| 43 |
<h1>¿Esta seguro de eliminar su cuenta?</h1>
|
43 |
<h1>¿Esta seguro de eliminar su cuenta?</h1>
|
| 44 |
<div className="row">
|
44 |
<div className="row">
|
| 45 |
<div className='col-md col-sm-12'>
|
45 |
<div className='col-md col-sm-12'>
|
| 46 |
<button className="btn btn-primary" onClick={handleGetCode}>Si, estoy seguro</button>
|
46 |
<button className="btn btn-primary" onClick={handleGetCode} disabled={showInputCode}>Si, estoy seguro</button>
|
| 47 |
</div>
|
47 |
</div>
|
| 48 |
<div className='col-md col-sm-12'>
|
48 |
<div className='col-md col-sm-12'>
|
| 49 |
<button className="btn btn-primary">No</button>
|
49 |
<button className="btn btn-primary" disabled={showInputCode}>No</button>
|
| 50 |
</div>
|
50 |
</div>
|
| 51 |
</div>
|
51 |
</div>
|
| 52 |
</div>
|
52 |
</div>
|
| 53 |
{
|
53 |
{
|
| 54 |
showInputCode && (
|
54 |
showInputCode && (
|
| 55 |
<form onSubmit={handleSubmit}>
|
55 |
<form onSubmit={handleSubmit}>
|
| 56 |
<div class="form-group">
|
56 |
<div class="form-group">
|
| 57 |
<label for="exampleInputEmail1">Ingrese el codigo</label>
|
57 |
<label for="exampleInputEmail1">Ingrese el codigo</label>
|
| 58 |
<input type="email" class="form-control" id="exampleInputEmail1" aria-describedby="emailHelp" placeholder="Ingrese el codigo" />
|
58 |
<input type="email" class="form-control" id="exampleInputEmail1" aria-describedby="emailHelp" />
|
| 59 |
<small id="emailHelp" class="form-text text-muted">Este codigo fue enviado a tu correo electrónico.</small>
|
59 |
<small id="emailHelp" class="form-text text-muted">Este codigo fue enviado a tu correo electrónico.</small>
|
| 60 |
</div>
|
60 |
</div>
|
| 61 |
<button type="submit" class="btn btn-primary">Submit</button>
|
61 |
<button type="submit" class="btn btn-primary">Enviar</button>
|
| 62 |
</form>
|
62 |
</form>
|
| 63 |
)
|
63 |
)
|
| 64 |
}
|
64 |
}
|
| 65 |
{loading && (
|
65 |
{loading && (
|
| 66 |
<StyledSpinnerContainer>
|
66 |
<StyledSpinnerContainer>
|