git-svn-id: http://locode01.ad.dom/svn/WEBMIP/trunk@2914 248e525c-4dfb-0310-94bc-949c084e9493
72 lines
2.3 KiB
SQL
72 lines
2.3 KiB
SQL
--application/shared_components/user_interface/templates/page/login
|
|
prompt ......Page template 24733840230526723
|
|
|
|
begin
|
|
|
|
declare
|
|
c1 varchar2(32767) := null;
|
|
c2 varchar2(32767) := null;
|
|
c3 varchar2(32767) := null;
|
|
l_clob clob;
|
|
l_length number := 1;
|
|
begin
|
|
c1:=c1||'<html lang="&BROWSER_LANGUAGE." xmlns:htmldb="http://htmldb.oracle.com">'||chr(10)||
|
|
'<head>'||chr(10)||
|
|
'<title>#TITLE#</title>'||chr(10)||
|
|
'<link rel="stylesheet" href="#IMAGE_PREFIX#themes/theme_4/common.css" type="text/css" />'||chr(10)||
|
|
'#HEAD#'||chr(10)||
|
|
'</head>'||chr(10)||
|
|
'<body #ONLOAD#>#FORM_OPEN#';
|
|
|
|
c2:=c2||'#FORM_CLOSE#</body>'||chr(10)||
|
|
'</html>'||chr(10)||
|
|
'';
|
|
|
|
c3:=c3||'<div class="t4messages">#GLOBAL_NOTIFICATION##SUCCESS_MESSAGE##NOTIFICATION_MESSAGE#</div>'||chr(10)||
|
|
'<table align="center" border="0" cellpadding="0" cellspacing="0" summary="" class="t4Login">'||chr(10)||
|
|
'<tr>'||chr(10)||
|
|
'<td>#BOX_BODY##REGION_POSITION_01##REGION_POSITION_02##REGION_POSITION_03##REGION_POSITION_04##REGION_POSITION_05##REGION_POSITION_06##REGION_POSITION_07##REGION_POSITION_08#</td>'||chr(10)||
|
|
'</tr>'||chr(10)||
|
|
'</table>'||chr(10)||
|
|
'';
|
|
|
|
wwv_flow_api.create_template(
|
|
p_id=> 24733840230526723 + wwv_flow_api.g_id_offset,
|
|
p_flow_id=> wwv_flow.g_flow_id,
|
|
p_name=> 'Login',
|
|
p_body_title=> '',
|
|
p_header_template=> c1,
|
|
p_box=> c3,
|
|
p_footer_template=> c2,
|
|
p_success_message=> '<div class="t4success">#MESSAGE#</div>',
|
|
p_current_tab=> '',
|
|
p_current_tab_font_attr=> '',
|
|
p_non_current_tab=> '',
|
|
p_non_current_tab_font_attr => '',
|
|
p_top_current_tab=> '',
|
|
p_top_current_tab_font_attr => '',
|
|
p_top_non_curr_tab=> '',
|
|
p_top_non_curr_tab_font_attr=> '',
|
|
p_current_image_tab=> '',
|
|
p_non_current_image_tab=> '',
|
|
p_notification_message=> '<div class="t4notification">#MESSAGE#</div>',
|
|
p_navigation_bar=> '<div class="t4NavigationBar">#BAR_BODY#</div>',
|
|
p_navbar_entry=> '<a href="#LINK#" class="t4NavigationBar">#TEXT#</a>',
|
|
p_app_tab_before_tabs=>'',
|
|
p_app_tab_current_tab=>'',
|
|
p_app_tab_non_current_tab=>'',
|
|
p_app_tab_after_tabs=>'',
|
|
p_region_table_cattributes=> ' summary="" cellpadding="0" border="0" cellspacing="0" width="100%"',
|
|
p_theme_id => 101,
|
|
p_theme_class_id => 6,
|
|
p_required_patch => null + wwv_flow_api.g_id_offset,
|
|
p_translate_this_template => 'N',
|
|
p_template_comment => '');
|
|
end;
|
|
|
|
null;
|
|
|
|
end;
|
|
/
|
|
|