diff --git a/source/Conference/Conference.Web.Public/Areas/ThirdPartyProcessor/Views/Shared/_Layout.cshtml b/source/Conference/Conference.Web.Public/Areas/ThirdPartyProcessor/Views/Shared/_Layout.cshtml
new file mode 100644
index 00000000..0d899cc9
--- /dev/null
+++ b/source/Conference/Conference.Web.Public/Areas/ThirdPartyProcessor/Views/Shared/_Layout.cshtml
@@ -0,0 +1,34 @@
+
+
+
+ @ViewBag.Title
+
+ @RenderSection("Head", required: false)
+
+
+
+
+ Simulated Third-party Payment Clearing Processor
+
+ Note: this page represents an external system that the Contoso Conference Management
+ System integrates with. It is meant to showcase the implementation of an integration
+ scenario. For more information on the journey see the
+ Journey Docs .
+
+ In a real system this is where you would provide your payment details and authorize
+ the payment before returning to the Conference Management System.
+ @RenderBody()
+
+
+
diff --git a/source/Conference/Conference.Web.Public/Areas/ThirdPartyProcessor/Views/ThirdPartyProcessorPayment/Pay.cshtml b/source/Conference/Conference.Web.Public/Areas/ThirdPartyProcessor/Views/ThirdPartyProcessorPayment/Pay.cshtml
index 27a1fc40..cb3610ae 100644
--- a/source/Conference/Conference.Web.Public/Areas/ThirdPartyProcessor/Views/ThirdPartyProcessorPayment/Pay.cshtml
+++ b/source/Conference/Conference.Web.Public/Areas/ThirdPartyProcessor/Views/ThirdPartyProcessorPayment/Pay.cshtml
@@ -1,5 +1,6 @@
@{
- ViewBag.Title = "Fantastic payment processor";
+ ViewBag.Title = "Simulated Third-party Payment Clearing Processor";
+ Layout = "../Shared/_Layout.cshtml";
}
Pay
@@ -9,9 +10,11 @@
Item: @this.ViewBag.ItemName
Amount: @this.ViewBag.ItemAmount
+
@Html.Hidden("ReturnUrl")
@Html.Hidden("CancelReturnUrl")
-
+
+
-}
+}
\ No newline at end of file
diff --git a/source/Conference/Conference.Web.Public/Conference.Web.Public.csproj b/source/Conference/Conference.Web.Public/Conference.Web.Public.csproj
index 0c8d6222..7cbc1a5a 100644
--- a/source/Conference/Conference.Web.Public/Conference.Web.Public.csproj
+++ b/source/Conference/Conference.Web.Public/Conference.Web.Public.csproj
@@ -223,6 +223,7 @@
+
@@ -275,7 +276,6 @@
-
10.0