@{ Layout = ""; } @model SmartStore.FacebookAuth.Models.ConfigurationModel @using SmartStore.Web.Framework;
@Html.Raw(T("Plugins.ExternalAuth.Facebook.AdminInstruction"))
@Html.Action("StoreScopeConfiguration", "Setting", new { area = "Admin" }) @Html.ValidationSummary(false)
@using (Html.BeginForm()) {
@Html.SmartLabelFor(model => model.ClientKeyIdentifier) @Html.SettingEditorFor(model => model.ClientKeyIdentifier) @Html.ValidationMessageFor(model => model.ClientKeyIdentifier)
@Html.SmartLabelFor(model => model.ClientSecret) @Html.SettingEditorFor(model => model.ClientSecret) @Html.ValidationMessageFor(model => model.ClientSecret)
 
}