private static void LayoutControls(CompleteStepContainer container) {
                Table table = CreateTable();
                table.EnableViewState = false;

                AddTitleRow(table, container);
                AddSuccessTextRow(table, container);
                AddContinueRow(table, container);
                AddEditRow(table, container);

                container.LayoutTable = table;
                container.AddChildControl(table);
            }