Currently, I have two separate pages set up. The first page contains a form with fields for email and password:
The second page includes all the typical questions for a sign-up process.
I am looking to combine both pages into a single page with a split box layout featuring two vertical columns.
Both pages are coded in .aspx format and the forms include the following declaration:
Sign Up:
<div id="main-area">
<div id="main-panel">
<div class="table-heading teal">Welcome to the Registration Page</div>
<asp:ScriptManager ID="ScriptManager1" runat="server"></asp:ScriptManager>
<asp:UpdatePanel ID="UpdatePanel1" runat="server">
<ContentTemplate>
Login page
<div id="main-area">
<div id="main-panel">
<div class="table-heading teal">Login</div>
<asp:ScriptManager ID="ScriptManager1" runat="server"></asp:ScriptManager>
<asp:UpdatePanel ID="UpdatePanel1" runat="server">
<ContentTemplate>
I believe I need to create a CSS style using #main-panel-left and #main-panel-right with a width of 50% each. However, when I attempt this, there seems to be an issue with the ASP code causing the page to not function properly.