+
+ <%: Title %>.
+ Your app description page.
+
+
+
+
+ Use this area to provide additional information.
+
+
+
+ Use this area to provide additional information.
+
+
+
+ Use this area to provide additional information.
+
+
+
+
+
\ No newline at end of file
diff --git a/CMS_SC/About.aspx.cs b/CMS_SC/About.aspx.cs
new file mode 100644
index 0000000..85ea5d2
--- /dev/null
+++ b/CMS_SC/About.aspx.cs
@@ -0,0 +1,17 @@
+using System;
+using System.Collections.Generic;
+using System.Linq;
+using System.Web;
+using System.Web.UI;
+using System.Web.UI.WebControls;
+
+namespace CMS_SC
+{
+ public partial class About : Page
+ {
+ protected void Page_Load(object sender, EventArgs e)
+ {
+
+ }
+ }
+}
\ No newline at end of file
diff --git a/CMS_SC/About.aspx.designer.cs b/CMS_SC/About.aspx.designer.cs
new file mode 100644
index 0000000..1e8ac9b
--- /dev/null
+++ b/CMS_SC/About.aspx.designer.cs
@@ -0,0 +1,17 @@
+//------------------------------------------------------------------------------
+//
+
+ <%: Title %>.
+
+
+
+
+
diff --git a/CMS_SC/Account/Login.aspx.cs b/CMS_SC/Account/Login.aspx.cs
new file mode 100644
index 0000000..9f86378
--- /dev/null
+++ b/CMS_SC/Account/Login.aspx.cs
@@ -0,0 +1,24 @@
+using System;
+using System.Collections.Generic;
+using System.Linq;
+using System.Web;
+using System.Web.UI;
+using System.Web.UI.WebControls;
+
+namespace CMS_SC.Account
+{
+ public partial class Login : Page
+ {
+ protected void Page_Load(object sender, EventArgs e)
+ {
+ RegisterHyperLink.NavigateUrl = "Register";
+ OpenAuthLogin.ReturnUrl = Request.QueryString["ReturnUrl"];
+
+ var returnUrl = HttpUtility.UrlEncode(Request.QueryString["ReturnUrl"]);
+ if (!String.IsNullOrEmpty(returnUrl))
+ {
+ RegisterHyperLink.NavigateUrl += "?ReturnUrl=" + returnUrl;
+ }
+ }
+ }
+}
\ No newline at end of file
diff --git a/CMS_SC/Account/Login.aspx.designer.cs b/CMS_SC/Account/Login.aspx.designer.cs
new file mode 100644
index 0000000..adc2171
--- /dev/null
+++ b/CMS_SC/Account/Login.aspx.designer.cs
@@ -0,0 +1,35 @@
+//------------------------------------------------------------------------------
+//
Use another service to log in.
+