Magento 2 How to add custom grid
How can I add this code in Magneto2 admin page.
<html>
<head>
<link rel="Stylesheet" href="https://cdn.datatables.net/1.10.12/css/jquery.dataTables.min.css" />
<script type="text/javascript" src="https://code.jquery.com/jquery-1.12.3.js"></script>
<script type="text/javascript" src="https://cdn.datatables.net/1.10.12/js/jquery.dataTables.min.js"></script>
<script>
$(document).ready(function() {
$('#MyTable').DataTable( {
initComplete: function () {
this.api().columns().every( function () {
var column = this;
var select = $('<select><option value=""></option></select>')
.appendTo( $(column.footer()).empty() )
.on( 'change', function () {
var val = $.fn.dataTable.util.escapeRegex(
$(this).val()
);
//to select and search from grid
column
.search( val ? '^'+val+'$' : '', true, false )
.draw();
} );
column.data().unique().sort().each( function ( d, j ) {
select.append( '<option value="'+d+'">'+d+'</option>' )
} );
} );
}
} );
} );
</script>
</head>
<body>
<table id="MyTable" class="display" cellspacing="0" width="100%">
<thead>
<tr>
<th>First Name</th>
<th>Last Name</th>
<th>Postion</th>
<th>Technologies</th>
<th>Company Name</th>
<th>Experience</th>
</tr>
</thead>
<tfoot>
<tr>
<th>Name</th>
</tr>
</tfoot>
<tbody>
<tr>
<td>Bikesh</td>
<td>Srivastava</td>
<td>Software Engg.</td>
<td>Asp.net</td>
<td>Hytech</td>
<td>4</td>
</tr>
<tr>
<td>Navdeep</td>
<td>Kumar</td>
<td>Sr.Software Engg.</td>
<td>Asp.net</td>
<td>Hytech</td>
<td>8</td>
</tr>
<tr>
<td>Sujata</td>
<td>Sinha</td>
<td>Software Engg.</td>
<td>Asp.net</td>
<td>Hytech</td>
<td>2</td>
</tr>
<tr>
<td>Panakj</td>
<td>Bhanadari</td>
<td>Software Engg.</td>
<td>Asp.net</td>
<td>Hytech</td>
<td>3</td>
</tr>
<tr>
<td>Harikant</td>
<td>Kumar</td>
<td>Web Designer</td>
<td>Asp.net</td>
<td>Hytech</td>
<td>4</td>
</tr>
<tr>
<td>Payal</td>
<td>Agrawal</td>
<td>Software Engg.</td>
<td>Salesforce</td>
<td>Hytech</td>
<td>1</td>
</tr>
<tr>
<td>Pritam</td>
<td>Shekhawat</td>
<td>Manager</td>
<td>Salesforce</td>
<td>Hytech</td>
<td>3</td>
</tr>
<tr>
<td>Saurabh</td>
<td>Kumar</td>
<td>Software Engg.</td>
<td>Asp.net</td>
<td>HytechPro</td>
<td>6</td>
</tr>
<tr>
<td>Vinod</td>
<td>Kumar</td>
<td>Software Engg.</td>
<td>Asp.net</td>
<td>HytechPro</td>
<td>6</td>
</tr>
<tr>
<<td>Manik</td>
<td>Bansal</td>
<td>Software Engg.</td>
<td>SharePoint</td>
<td>HytechPro</td>
<td>3</td>
</tr>
<tr>
<td>Brijesh</td>
<td>Srivastava</td>
<td>Asst.Manager</td>
<td>Pharma</td>
<td>Sun Pharama</td>
<td>6</td>
</tr>
<tr>
<td>Krishu</td>
<td>Srivastava</td>
<td>Software Engg.</td>
<td>Asp.net</td>
<td>Hytech</td>
<td>4</td>
</tr>
</tbody>
</table>
</body>
</html>
I need to show this grid on Magento2 admin page.
Any help would be greatly appreciated.
magento2 javascript adminhtml backend
bumped to the homepage by Community♦ 10 mins ago
This question has answers that may be good or bad; the system has marked it active so that they can be reviewed.
add a comment |
How can I add this code in Magneto2 admin page.
<html>
<head>
<link rel="Stylesheet" href="https://cdn.datatables.net/1.10.12/css/jquery.dataTables.min.css" />
<script type="text/javascript" src="https://code.jquery.com/jquery-1.12.3.js"></script>
<script type="text/javascript" src="https://cdn.datatables.net/1.10.12/js/jquery.dataTables.min.js"></script>
<script>
$(document).ready(function() {
$('#MyTable').DataTable( {
initComplete: function () {
this.api().columns().every( function () {
var column = this;
var select = $('<select><option value=""></option></select>')
.appendTo( $(column.footer()).empty() )
.on( 'change', function () {
var val = $.fn.dataTable.util.escapeRegex(
$(this).val()
);
//to select and search from grid
column
.search( val ? '^'+val+'$' : '', true, false )
.draw();
} );
column.data().unique().sort().each( function ( d, j ) {
select.append( '<option value="'+d+'">'+d+'</option>' )
} );
} );
}
} );
} );
</script>
</head>
<body>
<table id="MyTable" class="display" cellspacing="0" width="100%">
<thead>
<tr>
<th>First Name</th>
<th>Last Name</th>
<th>Postion</th>
<th>Technologies</th>
<th>Company Name</th>
<th>Experience</th>
</tr>
</thead>
<tfoot>
<tr>
<th>Name</th>
</tr>
</tfoot>
<tbody>
<tr>
<td>Bikesh</td>
<td>Srivastava</td>
<td>Software Engg.</td>
<td>Asp.net</td>
<td>Hytech</td>
<td>4</td>
</tr>
<tr>
<td>Navdeep</td>
<td>Kumar</td>
<td>Sr.Software Engg.</td>
<td>Asp.net</td>
<td>Hytech</td>
<td>8</td>
</tr>
<tr>
<td>Sujata</td>
<td>Sinha</td>
<td>Software Engg.</td>
<td>Asp.net</td>
<td>Hytech</td>
<td>2</td>
</tr>
<tr>
<td>Panakj</td>
<td>Bhanadari</td>
<td>Software Engg.</td>
<td>Asp.net</td>
<td>Hytech</td>
<td>3</td>
</tr>
<tr>
<td>Harikant</td>
<td>Kumar</td>
<td>Web Designer</td>
<td>Asp.net</td>
<td>Hytech</td>
<td>4</td>
</tr>
<tr>
<td>Payal</td>
<td>Agrawal</td>
<td>Software Engg.</td>
<td>Salesforce</td>
<td>Hytech</td>
<td>1</td>
</tr>
<tr>
<td>Pritam</td>
<td>Shekhawat</td>
<td>Manager</td>
<td>Salesforce</td>
<td>Hytech</td>
<td>3</td>
</tr>
<tr>
<td>Saurabh</td>
<td>Kumar</td>
<td>Software Engg.</td>
<td>Asp.net</td>
<td>HytechPro</td>
<td>6</td>
</tr>
<tr>
<td>Vinod</td>
<td>Kumar</td>
<td>Software Engg.</td>
<td>Asp.net</td>
<td>HytechPro</td>
<td>6</td>
</tr>
<tr>
<<td>Manik</td>
<td>Bansal</td>
<td>Software Engg.</td>
<td>SharePoint</td>
<td>HytechPro</td>
<td>3</td>
</tr>
<tr>
<td>Brijesh</td>
<td>Srivastava</td>
<td>Asst.Manager</td>
<td>Pharma</td>
<td>Sun Pharama</td>
<td>6</td>
</tr>
<tr>
<td>Krishu</td>
<td>Srivastava</td>
<td>Software Engg.</td>
<td>Asp.net</td>
<td>Hytech</td>
<td>4</td>
</tr>
</tbody>
</table>
</body>
</html>
I need to show this grid on Magento2 admin page.
Any help would be greatly appreciated.
magento2 javascript adminhtml backend
bumped to the homepage by Community♦ 10 mins ago
This question has answers that may be good or bad; the system has marked it active so that they can be reviewed.
add a comment |
How can I add this code in Magneto2 admin page.
<html>
<head>
<link rel="Stylesheet" href="https://cdn.datatables.net/1.10.12/css/jquery.dataTables.min.css" />
<script type="text/javascript" src="https://code.jquery.com/jquery-1.12.3.js"></script>
<script type="text/javascript" src="https://cdn.datatables.net/1.10.12/js/jquery.dataTables.min.js"></script>
<script>
$(document).ready(function() {
$('#MyTable').DataTable( {
initComplete: function () {
this.api().columns().every( function () {
var column = this;
var select = $('<select><option value=""></option></select>')
.appendTo( $(column.footer()).empty() )
.on( 'change', function () {
var val = $.fn.dataTable.util.escapeRegex(
$(this).val()
);
//to select and search from grid
column
.search( val ? '^'+val+'$' : '', true, false )
.draw();
} );
column.data().unique().sort().each( function ( d, j ) {
select.append( '<option value="'+d+'">'+d+'</option>' )
} );
} );
}
} );
} );
</script>
</head>
<body>
<table id="MyTable" class="display" cellspacing="0" width="100%">
<thead>
<tr>
<th>First Name</th>
<th>Last Name</th>
<th>Postion</th>
<th>Technologies</th>
<th>Company Name</th>
<th>Experience</th>
</tr>
</thead>
<tfoot>
<tr>
<th>Name</th>
</tr>
</tfoot>
<tbody>
<tr>
<td>Bikesh</td>
<td>Srivastava</td>
<td>Software Engg.</td>
<td>Asp.net</td>
<td>Hytech</td>
<td>4</td>
</tr>
<tr>
<td>Navdeep</td>
<td>Kumar</td>
<td>Sr.Software Engg.</td>
<td>Asp.net</td>
<td>Hytech</td>
<td>8</td>
</tr>
<tr>
<td>Sujata</td>
<td>Sinha</td>
<td>Software Engg.</td>
<td>Asp.net</td>
<td>Hytech</td>
<td>2</td>
</tr>
<tr>
<td>Panakj</td>
<td>Bhanadari</td>
<td>Software Engg.</td>
<td>Asp.net</td>
<td>Hytech</td>
<td>3</td>
</tr>
<tr>
<td>Harikant</td>
<td>Kumar</td>
<td>Web Designer</td>
<td>Asp.net</td>
<td>Hytech</td>
<td>4</td>
</tr>
<tr>
<td>Payal</td>
<td>Agrawal</td>
<td>Software Engg.</td>
<td>Salesforce</td>
<td>Hytech</td>
<td>1</td>
</tr>
<tr>
<td>Pritam</td>
<td>Shekhawat</td>
<td>Manager</td>
<td>Salesforce</td>
<td>Hytech</td>
<td>3</td>
</tr>
<tr>
<td>Saurabh</td>
<td>Kumar</td>
<td>Software Engg.</td>
<td>Asp.net</td>
<td>HytechPro</td>
<td>6</td>
</tr>
<tr>
<td>Vinod</td>
<td>Kumar</td>
<td>Software Engg.</td>
<td>Asp.net</td>
<td>HytechPro</td>
<td>6</td>
</tr>
<tr>
<<td>Manik</td>
<td>Bansal</td>
<td>Software Engg.</td>
<td>SharePoint</td>
<td>HytechPro</td>
<td>3</td>
</tr>
<tr>
<td>Brijesh</td>
<td>Srivastava</td>
<td>Asst.Manager</td>
<td>Pharma</td>
<td>Sun Pharama</td>
<td>6</td>
</tr>
<tr>
<td>Krishu</td>
<td>Srivastava</td>
<td>Software Engg.</td>
<td>Asp.net</td>
<td>Hytech</td>
<td>4</td>
</tr>
</tbody>
</table>
</body>
</html>
I need to show this grid on Magento2 admin page.
Any help would be greatly appreciated.
magento2 javascript adminhtml backend
How can I add this code in Magneto2 admin page.
<html>
<head>
<link rel="Stylesheet" href="https://cdn.datatables.net/1.10.12/css/jquery.dataTables.min.css" />
<script type="text/javascript" src="https://code.jquery.com/jquery-1.12.3.js"></script>
<script type="text/javascript" src="https://cdn.datatables.net/1.10.12/js/jquery.dataTables.min.js"></script>
<script>
$(document).ready(function() {
$('#MyTable').DataTable( {
initComplete: function () {
this.api().columns().every( function () {
var column = this;
var select = $('<select><option value=""></option></select>')
.appendTo( $(column.footer()).empty() )
.on( 'change', function () {
var val = $.fn.dataTable.util.escapeRegex(
$(this).val()
);
//to select and search from grid
column
.search( val ? '^'+val+'$' : '', true, false )
.draw();
} );
column.data().unique().sort().each( function ( d, j ) {
select.append( '<option value="'+d+'">'+d+'</option>' )
} );
} );
}
} );
} );
</script>
</head>
<body>
<table id="MyTable" class="display" cellspacing="0" width="100%">
<thead>
<tr>
<th>First Name</th>
<th>Last Name</th>
<th>Postion</th>
<th>Technologies</th>
<th>Company Name</th>
<th>Experience</th>
</tr>
</thead>
<tfoot>
<tr>
<th>Name</th>
</tr>
</tfoot>
<tbody>
<tr>
<td>Bikesh</td>
<td>Srivastava</td>
<td>Software Engg.</td>
<td>Asp.net</td>
<td>Hytech</td>
<td>4</td>
</tr>
<tr>
<td>Navdeep</td>
<td>Kumar</td>
<td>Sr.Software Engg.</td>
<td>Asp.net</td>
<td>Hytech</td>
<td>8</td>
</tr>
<tr>
<td>Sujata</td>
<td>Sinha</td>
<td>Software Engg.</td>
<td>Asp.net</td>
<td>Hytech</td>
<td>2</td>
</tr>
<tr>
<td>Panakj</td>
<td>Bhanadari</td>
<td>Software Engg.</td>
<td>Asp.net</td>
<td>Hytech</td>
<td>3</td>
</tr>
<tr>
<td>Harikant</td>
<td>Kumar</td>
<td>Web Designer</td>
<td>Asp.net</td>
<td>Hytech</td>
<td>4</td>
</tr>
<tr>
<td>Payal</td>
<td>Agrawal</td>
<td>Software Engg.</td>
<td>Salesforce</td>
<td>Hytech</td>
<td>1</td>
</tr>
<tr>
<td>Pritam</td>
<td>Shekhawat</td>
<td>Manager</td>
<td>Salesforce</td>
<td>Hytech</td>
<td>3</td>
</tr>
<tr>
<td>Saurabh</td>
<td>Kumar</td>
<td>Software Engg.</td>
<td>Asp.net</td>
<td>HytechPro</td>
<td>6</td>
</tr>
<tr>
<td>Vinod</td>
<td>Kumar</td>
<td>Software Engg.</td>
<td>Asp.net</td>
<td>HytechPro</td>
<td>6</td>
</tr>
<tr>
<<td>Manik</td>
<td>Bansal</td>
<td>Software Engg.</td>
<td>SharePoint</td>
<td>HytechPro</td>
<td>3</td>
</tr>
<tr>
<td>Brijesh</td>
<td>Srivastava</td>
<td>Asst.Manager</td>
<td>Pharma</td>
<td>Sun Pharama</td>
<td>6</td>
</tr>
<tr>
<td>Krishu</td>
<td>Srivastava</td>
<td>Software Engg.</td>
<td>Asp.net</td>
<td>Hytech</td>
<td>4</td>
</tr>
</tbody>
</table>
</body>
</html>
I need to show this grid on Magento2 admin page.
Any help would be greatly appreciated.
magento2 javascript adminhtml backend
magento2 javascript adminhtml backend
edited Oct 7 '17 at 13:03
MGento
1,257319
1,257319
asked Oct 7 '17 at 11:33
Rajesh NagappanRajesh Nagappan
76312
76312
bumped to the homepage by Community♦ 10 mins ago
This question has answers that may be good or bad; the system has marked it active so that they can be reviewed.
bumped to the homepage by Community♦ 10 mins ago
This question has answers that may be good or bad; the system has marked it active so that they can be reviewed.
add a comment |
add a comment |
1 Answer
1
active
oldest
votes
To archive,this you need to create a custom Module where you will need do below:
- Create setup script which will create a table.
- Create A model,resource model,Collection for this newsly create
Table for read/write data
Create admin section,where you will write the grid.
Below blogs will be help you:
https://webkul.com/blog/create-grid-edit-add-grid-row-and-installer-in-magento2/
https://www.mageplaza.com/magento-2-module-development/create-admin-grid-magento-2.html
https://www.aurigait.com/blog/magento-2-admin-grid/
Thanks for your response. I need above custom grid, so how can I add DataTable Js Library.
– Rajesh Nagappan
Oct 7 '17 at 14:26
why you need to addDataTable Js Library
– Amit Bera♦
Oct 7 '17 at 14:38
For add new js library you can use webkul.com/blog/include-use-custom-js-file-require-js-magento2 or magento.stackexchange.com/questions/85851/…
– Amit Bera♦
Oct 7 '17 at 14:41
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%2f196286%2fmagento-2-how-to-add-custom-grid%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
To archive,this you need to create a custom Module where you will need do below:
- Create setup script which will create a table.
- Create A model,resource model,Collection for this newsly create
Table for read/write data
Create admin section,where you will write the grid.
Below blogs will be help you:
https://webkul.com/blog/create-grid-edit-add-grid-row-and-installer-in-magento2/
https://www.mageplaza.com/magento-2-module-development/create-admin-grid-magento-2.html
https://www.aurigait.com/blog/magento-2-admin-grid/
Thanks for your response. I need above custom grid, so how can I add DataTable Js Library.
– Rajesh Nagappan
Oct 7 '17 at 14:26
why you need to addDataTable Js Library
– Amit Bera♦
Oct 7 '17 at 14:38
For add new js library you can use webkul.com/blog/include-use-custom-js-file-require-js-magento2 or magento.stackexchange.com/questions/85851/…
– Amit Bera♦
Oct 7 '17 at 14:41
add a comment |
To archive,this you need to create a custom Module where you will need do below:
- Create setup script which will create a table.
- Create A model,resource model,Collection for this newsly create
Table for read/write data
Create admin section,where you will write the grid.
Below blogs will be help you:
https://webkul.com/blog/create-grid-edit-add-grid-row-and-installer-in-magento2/
https://www.mageplaza.com/magento-2-module-development/create-admin-grid-magento-2.html
https://www.aurigait.com/blog/magento-2-admin-grid/
Thanks for your response. I need above custom grid, so how can I add DataTable Js Library.
– Rajesh Nagappan
Oct 7 '17 at 14:26
why you need to addDataTable Js Library
– Amit Bera♦
Oct 7 '17 at 14:38
For add new js library you can use webkul.com/blog/include-use-custom-js-file-require-js-magento2 or magento.stackexchange.com/questions/85851/…
– Amit Bera♦
Oct 7 '17 at 14:41
add a comment |
To archive,this you need to create a custom Module where you will need do below:
- Create setup script which will create a table.
- Create A model,resource model,Collection for this newsly create
Table for read/write data
Create admin section,where you will write the grid.
Below blogs will be help you:
https://webkul.com/blog/create-grid-edit-add-grid-row-and-installer-in-magento2/
https://www.mageplaza.com/magento-2-module-development/create-admin-grid-magento-2.html
https://www.aurigait.com/blog/magento-2-admin-grid/
To archive,this you need to create a custom Module where you will need do below:
- Create setup script which will create a table.
- Create A model,resource model,Collection for this newsly create
Table for read/write data
Create admin section,where you will write the grid.
Below blogs will be help you:
https://webkul.com/blog/create-grid-edit-add-grid-row-and-installer-in-magento2/
https://www.mageplaza.com/magento-2-module-development/create-admin-grid-magento-2.html
https://www.aurigait.com/blog/magento-2-admin-grid/
answered Oct 7 '17 at 13:35
Amit Bera♦Amit Bera
57.6k1474172
57.6k1474172
Thanks for your response. I need above custom grid, so how can I add DataTable Js Library.
– Rajesh Nagappan
Oct 7 '17 at 14:26
why you need to addDataTable Js Library
– Amit Bera♦
Oct 7 '17 at 14:38
For add new js library you can use webkul.com/blog/include-use-custom-js-file-require-js-magento2 or magento.stackexchange.com/questions/85851/…
– Amit Bera♦
Oct 7 '17 at 14:41
add a comment |
Thanks for your response. I need above custom grid, so how can I add DataTable Js Library.
– Rajesh Nagappan
Oct 7 '17 at 14:26
why you need to addDataTable Js Library
– Amit Bera♦
Oct 7 '17 at 14:38
For add new js library you can use webkul.com/blog/include-use-custom-js-file-require-js-magento2 or magento.stackexchange.com/questions/85851/…
– Amit Bera♦
Oct 7 '17 at 14:41
Thanks for your response. I need above custom grid, so how can I add DataTable Js Library.
– Rajesh Nagappan
Oct 7 '17 at 14:26
Thanks for your response. I need above custom grid, so how can I add DataTable Js Library.
– Rajesh Nagappan
Oct 7 '17 at 14:26
why you need to add
DataTable Js Library
– Amit Bera♦
Oct 7 '17 at 14:38
why you need to add
DataTable Js Library
– Amit Bera♦
Oct 7 '17 at 14:38
For add new js library you can use webkul.com/blog/include-use-custom-js-file-require-js-magento2 or magento.stackexchange.com/questions/85851/…
– Amit Bera♦
Oct 7 '17 at 14:41
For add new js library you can use webkul.com/blog/include-use-custom-js-file-require-js-magento2 or magento.stackexchange.com/questions/85851/…
– Amit Bera♦
Oct 7 '17 at 14:41
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%2f196286%2fmagento-2-how-to-add-custom-grid%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