Magento 2 create admin form selected option depend on another selected option Announcing the arrival of Valued Associate #679: Cesar Manara Unicorn Meta Zoo #1: Why another podcast?Admin form fetch values from dropdownAdmin Form fetch values from Database and keep it selected in dropdownMagento 2 :Display attribute option valuesMagento 2 admin end drop down dependencies?In Magento2 For Ui component Form select Field,Dependency with another FieldGet system config option inside source model of another optionDynamic number of text fields when a value from dropdown is selected in Magento 2 system configuration backendChange value of text field in admin form based on option selected in dropdownMagento 2 Admin Ui form fieldset dependencyMagento 2 : Set dependency between two dropdown in ui form
When does Bran Stark remember Jamie pushing him?
Why did Israel vote against lifting the American embargo on Cuba?
What was Apollo 13's "Little Jolt" after MECO?
What *exactly* is electrical current, voltage, and resistance?
How to keep bees out of canned beverages?
How would you suggest I follow up with coworkers about our deadline that's today?
Retract an already submitted Recommendation Letter (written for an undergrad student)
What to do with someone that cheated their way though university and a PhD program?
Is there an efficient way for synchronising audio events real-time with LEDs using an MCU?
Why isn't everyone flabbergasted about Bran's "gift"?
How would it unbalance gameplay to rule that Weapon Master allows for picking a fighting style?
Does a Draconic Bloodline sorcerer's doubled proficiency bonus for Charisma checks against dragons apply to all dragon types or only the chosen one?
Writing a T-SQL stored procedure to receive 4 numbers and insert them into a table
What is ls Largest Number Formed by only moving two sticks in 508?
So I pre ordered a game on my friends home screen but on my Xbox, does that mean I don't get the game and I lost 60$?
Marquee sign letters
Has a Nobel Peace laureate ever been accused of war crimes?
Does every subgroup of an abelian group have to be abelian?
Where can I find how to tex symbols for different fonts?
Will I lose my paid in full property
When speaking, how do you change your mind mid-sentence?
Arriving in Atlanta after US Preclearance in Dublin. Will I go through TSA security in Atlanta to transfer to a connecting flight?
What is the numbering system used for the DSN dishes?
How long can a nation maintain a technological edge over the rest of the world?
Magento 2 create admin form selected option depend on another selected option
Announcing the arrival of Valued Associate #679: Cesar Manara
Unicorn Meta Zoo #1: Why another podcast?Admin form fetch values from dropdownAdmin Form fetch values from Database and keep it selected in dropdownMagento 2 :Display attribute option valuesMagento 2 admin end drop down dependencies?In Magento2 For Ui component Form select Field,Dependency with another FieldGet system config option inside source model of another optionDynamic number of text fields when a value from dropdown is selected in Magento 2 system configuration backendChange value of text field in admin form based on option selected in dropdownMagento 2 Admin Ui form fieldset dependencyMagento 2 : Set dependency between two dropdown in ui form
.everyoneloves__top-leaderboard:empty,.everyoneloves__mid-leaderboard:empty,.everyoneloves__bot-mid-leaderboard:empty margin-bottom:0;
I have created an module for admin which have admin form and this form have some fields.I have two select option drop down fields.If I choose first dropdown option value then second drop-down display some values and if I choose another option then value should be different.
I have search on forums but not found any solution.Please help me.
screenshot are attached.
magento2 adminform
add a comment |
I have created an module for admin which have admin form and this form have some fields.I have two select option drop down fields.If I choose first dropdown option value then second drop-down display some values and if I choose another option then value should be different.
I have search on forums but not found any solution.Please help me.
screenshot are attached.
magento2 adminform
add a comment |
I have created an module for admin which have admin form and this form have some fields.I have two select option drop down fields.If I choose first dropdown option value then second drop-down display some values and if I choose another option then value should be different.
I have search on forums but not found any solution.Please help me.
screenshot are attached.
magento2 adminform
I have created an module for admin which have admin form and this form have some fields.I have two select option drop down fields.If I choose first dropdown option value then second drop-down display some values and if I choose another option then value should be different.
I have search on forums but not found any solution.Please help me.
screenshot are attached.
magento2 adminform
magento2 adminform
asked Apr 19 at 11:54
akgolaakgola
1,482520
1,482520
add a comment |
add a comment |
1 Answer
1
active
oldest
votes
This May Help you . I have used this on a drop-down in ui-component. Selecting a options shows respective field.
add this code in your ui-component
<field name="apply">
<argument name="data" xsi:type="array">
<item name="options" xsi:type="object">VendorModuleModelConfigSourceAction</item>
<item name="config" xsi:type="array">
<item name="label" xsi:type="string" translate="true">Apply</item>
<item name="component" xsi:type="string">Vendor_Module/js/form/options</item>
<item name="dataType" xsi:type="string">select</item>
<item name="formElement" xsi:type="string">select</item>
<item name="source" xsi:type="string">yoursourcename</item>
<item name="dataScope" xsi:type="string">apply</item>
<item name="notice" xsi:type="string" translate="true">Select type.</item>
<item name="validation" xsi:type="array">
<item name="required-entry" xsi:type="boolean">true</item>
</item>
</item>
</argument>
</field>
<field name="fixed">
<argument name="data" xsi:type="array">
<item name="config" xsi:type="array">
<item name="additionalClasses" xsi:type="array">
<item name="admin__field-fixed-value" xsi:type="boolean">true</item>
</item>
<item name="label" xsi:type="string">Price :</item>
<item name="dataType" xsi:type="string">text</item>
<item name="formElement" xsi:type="string">input</item>
<item name="source" xsi:type="string">flashsalespro</item>
<item name="sortOrder" xsi:type="number">20</item>
<item name="breakLine" xsi:type="boolean">true</item>
<item name="visibleValue" xsi:type="string">2</item>
<item name="visible" xsi:type="boolean">false</item>
</item>
</argument>
</field>
<field name="percentage">
<argument name="data" xsi:type="array">
<item name="config" xsi:type="array">
<item name="additionalClasses" xsi:type="array">
<item name="admin__field-percentage-value" xsi:type="boolean">true</item>
</item>
<item name="label" xsi:type="string">Percentage :</item>
<item name="dataType" xsi:type="string">text</item>
<item name="formElement" xsi:type="string">input</item>
<item name="source" xsi:type="string">flashsalespro</item>
<item name="dataScope" xsi:type="string">percentage</item>
<item name="sortOrder" xsi:type="number">20</item>
<item name="breakLine" xsi:type="boolean">true</item>
<item name="visibleValue" xsi:type="string">0</item>
<item name="visible" xsi:type="boolean">true</item>
</item>
</argument>
</field>
Add option.js
in
Vendor/Module/view/adminhtml/web/js/form/
define([
'underscore',
'uiRegistry',
'Magento_Ui/js/form/element/select',
'Magento_Ui/js/modal/modal',
'ko'
], function (_, uiRegistry, select, modal, ko)
'use strict';
return select.extend(
initialize: function ()
this._super();
this.fieldDepend(this.value());
return this;
,
onUpdate: function (value)
var field_percentage = uiRegistry.get('index = percentage'); // get field
var field_fixed = uiRegistry.get('index = fixed'); // get fieldset
if (value === 'fixed')
field_percentage.hide();
field_fixed.show();
else
field_percentage.show();
field_fixed.hide();
return this._super();
,
fieldDepend: function (value)
setTimeout( function()
var field_percentage = uiRegistry.get('index = percentage');
var field_fixed = uiRegistry.get('index = fixed');
if (value === 'fixed')
field_percentage.hide();
field_fixed.show();
);
);
);
I have used fields you can use drop down .
Hi @ghulam,thanks for your answer.I am not using ui component for admin form.
– akgola
2 hours ago
add a comment |
Your Answer
StackExchange.ready(function()
var channelOptions =
tags: "".split(" "),
id: "479"
;
initTagRenderer("".split(" "), "".split(" "), channelOptions);
StackExchange.using("externalEditor", function()
// Have to fire editor after snippets, if snippets enabled
if (StackExchange.settings.snippets.snippetsEnabled)
StackExchange.using("snippets", function()
createEditor();
);
else
createEditor();
);
function createEditor()
StackExchange.prepareEditor(
heartbeatType: 'answer',
autoActivateHeartbeat: false,
convertImagesToLinks: false,
noModals: true,
showLowRepImageUploadWarning: true,
reputationToPostImages: null,
bindNavPrevention: true,
postfix: "",
imageUploader:
brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/3.0/"u003ecc by-sa 3.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
allowUrls: true
,
onDemand: true,
discardSelector: ".discard-answer"
,immediatelyShowMarkdownHelp:true
);
);
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function ()
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fmagento.stackexchange.com%2fquestions%2f270787%2fmagento-2-create-admin-form-selected-option-depend-on-another-selected-option%23new-answer', 'question_page');
);
Post as a guest
Required, but never shown
1 Answer
1
active
oldest
votes
1 Answer
1
active
oldest
votes
active
oldest
votes
active
oldest
votes
This May Help you . I have used this on a drop-down in ui-component. Selecting a options shows respective field.
add this code in your ui-component
<field name="apply">
<argument name="data" xsi:type="array">
<item name="options" xsi:type="object">VendorModuleModelConfigSourceAction</item>
<item name="config" xsi:type="array">
<item name="label" xsi:type="string" translate="true">Apply</item>
<item name="component" xsi:type="string">Vendor_Module/js/form/options</item>
<item name="dataType" xsi:type="string">select</item>
<item name="formElement" xsi:type="string">select</item>
<item name="source" xsi:type="string">yoursourcename</item>
<item name="dataScope" xsi:type="string">apply</item>
<item name="notice" xsi:type="string" translate="true">Select type.</item>
<item name="validation" xsi:type="array">
<item name="required-entry" xsi:type="boolean">true</item>
</item>
</item>
</argument>
</field>
<field name="fixed">
<argument name="data" xsi:type="array">
<item name="config" xsi:type="array">
<item name="additionalClasses" xsi:type="array">
<item name="admin__field-fixed-value" xsi:type="boolean">true</item>
</item>
<item name="label" xsi:type="string">Price :</item>
<item name="dataType" xsi:type="string">text</item>
<item name="formElement" xsi:type="string">input</item>
<item name="source" xsi:type="string">flashsalespro</item>
<item name="sortOrder" xsi:type="number">20</item>
<item name="breakLine" xsi:type="boolean">true</item>
<item name="visibleValue" xsi:type="string">2</item>
<item name="visible" xsi:type="boolean">false</item>
</item>
</argument>
</field>
<field name="percentage">
<argument name="data" xsi:type="array">
<item name="config" xsi:type="array">
<item name="additionalClasses" xsi:type="array">
<item name="admin__field-percentage-value" xsi:type="boolean">true</item>
</item>
<item name="label" xsi:type="string">Percentage :</item>
<item name="dataType" xsi:type="string">text</item>
<item name="formElement" xsi:type="string">input</item>
<item name="source" xsi:type="string">flashsalespro</item>
<item name="dataScope" xsi:type="string">percentage</item>
<item name="sortOrder" xsi:type="number">20</item>
<item name="breakLine" xsi:type="boolean">true</item>
<item name="visibleValue" xsi:type="string">0</item>
<item name="visible" xsi:type="boolean">true</item>
</item>
</argument>
</field>
Add option.js
in
Vendor/Module/view/adminhtml/web/js/form/
define([
'underscore',
'uiRegistry',
'Magento_Ui/js/form/element/select',
'Magento_Ui/js/modal/modal',
'ko'
], function (_, uiRegistry, select, modal, ko)
'use strict';
return select.extend(
initialize: function ()
this._super();
this.fieldDepend(this.value());
return this;
,
onUpdate: function (value)
var field_percentage = uiRegistry.get('index = percentage'); // get field
var field_fixed = uiRegistry.get('index = fixed'); // get fieldset
if (value === 'fixed')
field_percentage.hide();
field_fixed.show();
else
field_percentage.show();
field_fixed.hide();
return this._super();
,
fieldDepend: function (value)
setTimeout( function()
var field_percentage = uiRegistry.get('index = percentage');
var field_fixed = uiRegistry.get('index = fixed');
if (value === 'fixed')
field_percentage.hide();
field_fixed.show();
);
);
);
I have used fields you can use drop down .
Hi @ghulam,thanks for your answer.I am not using ui component for admin form.
– akgola
2 hours ago
add a comment |
This May Help you . I have used this on a drop-down in ui-component. Selecting a options shows respective field.
add this code in your ui-component
<field name="apply">
<argument name="data" xsi:type="array">
<item name="options" xsi:type="object">VendorModuleModelConfigSourceAction</item>
<item name="config" xsi:type="array">
<item name="label" xsi:type="string" translate="true">Apply</item>
<item name="component" xsi:type="string">Vendor_Module/js/form/options</item>
<item name="dataType" xsi:type="string">select</item>
<item name="formElement" xsi:type="string">select</item>
<item name="source" xsi:type="string">yoursourcename</item>
<item name="dataScope" xsi:type="string">apply</item>
<item name="notice" xsi:type="string" translate="true">Select type.</item>
<item name="validation" xsi:type="array">
<item name="required-entry" xsi:type="boolean">true</item>
</item>
</item>
</argument>
</field>
<field name="fixed">
<argument name="data" xsi:type="array">
<item name="config" xsi:type="array">
<item name="additionalClasses" xsi:type="array">
<item name="admin__field-fixed-value" xsi:type="boolean">true</item>
</item>
<item name="label" xsi:type="string">Price :</item>
<item name="dataType" xsi:type="string">text</item>
<item name="formElement" xsi:type="string">input</item>
<item name="source" xsi:type="string">flashsalespro</item>
<item name="sortOrder" xsi:type="number">20</item>
<item name="breakLine" xsi:type="boolean">true</item>
<item name="visibleValue" xsi:type="string">2</item>
<item name="visible" xsi:type="boolean">false</item>
</item>
</argument>
</field>
<field name="percentage">
<argument name="data" xsi:type="array">
<item name="config" xsi:type="array">
<item name="additionalClasses" xsi:type="array">
<item name="admin__field-percentage-value" xsi:type="boolean">true</item>
</item>
<item name="label" xsi:type="string">Percentage :</item>
<item name="dataType" xsi:type="string">text</item>
<item name="formElement" xsi:type="string">input</item>
<item name="source" xsi:type="string">flashsalespro</item>
<item name="dataScope" xsi:type="string">percentage</item>
<item name="sortOrder" xsi:type="number">20</item>
<item name="breakLine" xsi:type="boolean">true</item>
<item name="visibleValue" xsi:type="string">0</item>
<item name="visible" xsi:type="boolean">true</item>
</item>
</argument>
</field>
Add option.js
in
Vendor/Module/view/adminhtml/web/js/form/
define([
'underscore',
'uiRegistry',
'Magento_Ui/js/form/element/select',
'Magento_Ui/js/modal/modal',
'ko'
], function (_, uiRegistry, select, modal, ko)
'use strict';
return select.extend(
initialize: function ()
this._super();
this.fieldDepend(this.value());
return this;
,
onUpdate: function (value)
var field_percentage = uiRegistry.get('index = percentage'); // get field
var field_fixed = uiRegistry.get('index = fixed'); // get fieldset
if (value === 'fixed')
field_percentage.hide();
field_fixed.show();
else
field_percentage.show();
field_fixed.hide();
return this._super();
,
fieldDepend: function (value)
setTimeout( function()
var field_percentage = uiRegistry.get('index = percentage');
var field_fixed = uiRegistry.get('index = fixed');
if (value === 'fixed')
field_percentage.hide();
field_fixed.show();
);
);
);
I have used fields you can use drop down .
Hi @ghulam,thanks for your answer.I am not using ui component for admin form.
– akgola
2 hours ago
add a comment |
This May Help you . I have used this on a drop-down in ui-component. Selecting a options shows respective field.
add this code in your ui-component
<field name="apply">
<argument name="data" xsi:type="array">
<item name="options" xsi:type="object">VendorModuleModelConfigSourceAction</item>
<item name="config" xsi:type="array">
<item name="label" xsi:type="string" translate="true">Apply</item>
<item name="component" xsi:type="string">Vendor_Module/js/form/options</item>
<item name="dataType" xsi:type="string">select</item>
<item name="formElement" xsi:type="string">select</item>
<item name="source" xsi:type="string">yoursourcename</item>
<item name="dataScope" xsi:type="string">apply</item>
<item name="notice" xsi:type="string" translate="true">Select type.</item>
<item name="validation" xsi:type="array">
<item name="required-entry" xsi:type="boolean">true</item>
</item>
</item>
</argument>
</field>
<field name="fixed">
<argument name="data" xsi:type="array">
<item name="config" xsi:type="array">
<item name="additionalClasses" xsi:type="array">
<item name="admin__field-fixed-value" xsi:type="boolean">true</item>
</item>
<item name="label" xsi:type="string">Price :</item>
<item name="dataType" xsi:type="string">text</item>
<item name="formElement" xsi:type="string">input</item>
<item name="source" xsi:type="string">flashsalespro</item>
<item name="sortOrder" xsi:type="number">20</item>
<item name="breakLine" xsi:type="boolean">true</item>
<item name="visibleValue" xsi:type="string">2</item>
<item name="visible" xsi:type="boolean">false</item>
</item>
</argument>
</field>
<field name="percentage">
<argument name="data" xsi:type="array">
<item name="config" xsi:type="array">
<item name="additionalClasses" xsi:type="array">
<item name="admin__field-percentage-value" xsi:type="boolean">true</item>
</item>
<item name="label" xsi:type="string">Percentage :</item>
<item name="dataType" xsi:type="string">text</item>
<item name="formElement" xsi:type="string">input</item>
<item name="source" xsi:type="string">flashsalespro</item>
<item name="dataScope" xsi:type="string">percentage</item>
<item name="sortOrder" xsi:type="number">20</item>
<item name="breakLine" xsi:type="boolean">true</item>
<item name="visibleValue" xsi:type="string">0</item>
<item name="visible" xsi:type="boolean">true</item>
</item>
</argument>
</field>
Add option.js
in
Vendor/Module/view/adminhtml/web/js/form/
define([
'underscore',
'uiRegistry',
'Magento_Ui/js/form/element/select',
'Magento_Ui/js/modal/modal',
'ko'
], function (_, uiRegistry, select, modal, ko)
'use strict';
return select.extend(
initialize: function ()
this._super();
this.fieldDepend(this.value());
return this;
,
onUpdate: function (value)
var field_percentage = uiRegistry.get('index = percentage'); // get field
var field_fixed = uiRegistry.get('index = fixed'); // get fieldset
if (value === 'fixed')
field_percentage.hide();
field_fixed.show();
else
field_percentage.show();
field_fixed.hide();
return this._super();
,
fieldDepend: function (value)
setTimeout( function()
var field_percentage = uiRegistry.get('index = percentage');
var field_fixed = uiRegistry.get('index = fixed');
if (value === 'fixed')
field_percentage.hide();
field_fixed.show();
);
);
);
I have used fields you can use drop down .
This May Help you . I have used this on a drop-down in ui-component. Selecting a options shows respective field.
add this code in your ui-component
<field name="apply">
<argument name="data" xsi:type="array">
<item name="options" xsi:type="object">VendorModuleModelConfigSourceAction</item>
<item name="config" xsi:type="array">
<item name="label" xsi:type="string" translate="true">Apply</item>
<item name="component" xsi:type="string">Vendor_Module/js/form/options</item>
<item name="dataType" xsi:type="string">select</item>
<item name="formElement" xsi:type="string">select</item>
<item name="source" xsi:type="string">yoursourcename</item>
<item name="dataScope" xsi:type="string">apply</item>
<item name="notice" xsi:type="string" translate="true">Select type.</item>
<item name="validation" xsi:type="array">
<item name="required-entry" xsi:type="boolean">true</item>
</item>
</item>
</argument>
</field>
<field name="fixed">
<argument name="data" xsi:type="array">
<item name="config" xsi:type="array">
<item name="additionalClasses" xsi:type="array">
<item name="admin__field-fixed-value" xsi:type="boolean">true</item>
</item>
<item name="label" xsi:type="string">Price :</item>
<item name="dataType" xsi:type="string">text</item>
<item name="formElement" xsi:type="string">input</item>
<item name="source" xsi:type="string">flashsalespro</item>
<item name="sortOrder" xsi:type="number">20</item>
<item name="breakLine" xsi:type="boolean">true</item>
<item name="visibleValue" xsi:type="string">2</item>
<item name="visible" xsi:type="boolean">false</item>
</item>
</argument>
</field>
<field name="percentage">
<argument name="data" xsi:type="array">
<item name="config" xsi:type="array">
<item name="additionalClasses" xsi:type="array">
<item name="admin__field-percentage-value" xsi:type="boolean">true</item>
</item>
<item name="label" xsi:type="string">Percentage :</item>
<item name="dataType" xsi:type="string">text</item>
<item name="formElement" xsi:type="string">input</item>
<item name="source" xsi:type="string">flashsalespro</item>
<item name="dataScope" xsi:type="string">percentage</item>
<item name="sortOrder" xsi:type="number">20</item>
<item name="breakLine" xsi:type="boolean">true</item>
<item name="visibleValue" xsi:type="string">0</item>
<item name="visible" xsi:type="boolean">true</item>
</item>
</argument>
</field>
Add option.js
in
Vendor/Module/view/adminhtml/web/js/form/
define([
'underscore',
'uiRegistry',
'Magento_Ui/js/form/element/select',
'Magento_Ui/js/modal/modal',
'ko'
], function (_, uiRegistry, select, modal, ko)
'use strict';
return select.extend(
initialize: function ()
this._super();
this.fieldDepend(this.value());
return this;
,
onUpdate: function (value)
var field_percentage = uiRegistry.get('index = percentage'); // get field
var field_fixed = uiRegistry.get('index = fixed'); // get fieldset
if (value === 'fixed')
field_percentage.hide();
field_fixed.show();
else
field_percentage.show();
field_fixed.hide();
return this._super();
,
fieldDepend: function (value)
setTimeout( function()
var field_percentage = uiRegistry.get('index = percentage');
var field_fixed = uiRegistry.get('index = fixed');
if (value === 'fixed')
field_percentage.hide();
field_fixed.show();
);
);
);
I have used fields you can use drop down .
answered Apr 19 at 16:14
Ghulam.MGhulam.M
33711
33711
Hi @ghulam,thanks for your answer.I am not using ui component for admin form.
– akgola
2 hours ago
add a comment |
Hi @ghulam,thanks for your answer.I am not using ui component for admin form.
– akgola
2 hours ago
Hi @ghulam,thanks for your answer.I am not using ui component for admin form.
– akgola
2 hours ago
Hi @ghulam,thanks for your answer.I am not using ui component for admin form.
– akgola
2 hours ago
add a comment |
Thanks for contributing an answer to Magento Stack Exchange!
- Please be sure to answer the question. Provide details and share your research!
But avoid …
- Asking for help, clarification, or responding to other answers.
- Making statements based on opinion; back them up with references or personal experience.
To learn more, see our tips on writing great answers.
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function ()
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fmagento.stackexchange.com%2fquestions%2f270787%2fmagento-2-create-admin-form-selected-option-depend-on-another-selected-option%23new-answer', 'question_page');
);
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown