subscribe cards

This commit is contained in:
CHIEFSOFT\ameye
2025-08-16 06:15:09 -04:00
parent 669a249499
commit c7c1da919d
3 changed files with 42 additions and 0 deletions
@@ -0,0 +1,30 @@
import React from 'react'
export default function SubcribePaymentOptions(){
return <>
<div className="card-header">
<div className="card-heading">
<h4 className="card-title">Select Payment Option</h4>
</div>
</div>
<div className="card-body">
<div className="form-check form-check-inline">
<input className="form-check-input" type="radio" name="inlineRadioOptions" id="inlineRadio1"
value="option1" />
<label className="form-check-label" htmlFor="inlineRadio1">Previous Cards</label>
</div>
<div className="form-check form-check-inline">
<input className="form-check-input" type="radio" name="inlineRadioOptions" id="inlineRadio2"
value="option2" />
<label className="form-check-label" htmlFor="inlineRadio2">Add New card</label>
</div>
</div>
{/*<div className="card card-statistics"> </div>*/}
</>
}
@@ -0,0 +1,6 @@
import React from 'react'
export default function SubscribeNewCard(){
return <>Previous Card</>
}
@@ -0,0 +1,6 @@
import React from 'react'
export default function SubscribePreviousCard(){
return <>Previous Card</>
}