frombokeh.ioimportshowfrombokeh.layoutsimportcolumn,rowfrombokeh.models.widgetsimportButton,Checkbox,RadioGroup,Select,TextInput# Billing addressfirst_name=TextInput(title="First name")last_name=TextInput(title="Last name")username=TextInput(title="Username",placeholder="Username",prefix="@")email=TextInput(title="E-mail",placeholder="you@example.com")address=TextInput(title="Address",placeholder="1234 Main St.")address2=TextInput(title="Address 2 (Optional)",placeholder="Apartment or suite")country=Select(title="Country",options=["United States"])#, placeholder="Choose...")state=Select(title="State",options=["California"])#, placeholder="Choose...")zip=TextInput(title="Zip")shipping=Checkbox(label="Shipping address is the same as my billing address")account=Checkbox(label="Save this information for next time")# Paymentpayment_type=RadioGroup(labels=["Credit card","Debit card","PayPal"])name_on_card=TextInput(title="Name on card",placeholder="Full name as displayed on card")card_number=TextInput(title="Credit card number")expiration=TextInput(title="Expiration")cvv=TextInput(title="CVV")continue_to_checkout=Button(button_type="primary",label="Continue to checkout",sizing_mode="stretch_width")form=column([# billing_addressrow([first_name,last_name]),username,email,address,address2,row([country,state,zip]),# hrshipping,account,# hr# paymentpayment_type,row([name_on_card,card_number]),row([expiration,cvv]),# hrcontinue_to_checkout,])show(form)