Advertisement
Guest User

Untitled

a guest
Dec 8th, 2018
130
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 19.95 KB | None | 0 0
  1. <style type="text/css">
  2. #left .43675d1 .main-content {background-color: #fbfbfb;border:0;}#main .43675d1 .main-content {background-color: #fbfbfb;border: 1px solid #dddddd;}#main .43675d1 .main-content iframe{display: block important!;visibility: visible important!}div#main-content iframe[src*=adstune]:not([style*=display]), div#main-content iframe[src*=criteo]:not([style*=display]), div#main-content iframe[src*=ad6b]:not([style*=display]), div#main-content iframe[src*=z5x]:not([style*=display]), div#main-content iframe[src*=doubleclick]:not([style*=display]) {display: block !important;visibility: visible !important;}
  3. </style>
  4. <link rel="stylesheet" href="http://netdna.bootstrapcdn.com/font-awesome/4.4.0/css/font-awesome.min.css"><link href='http://fonts.googleapis.com/css?family=Ubuntu:400,500,700,400italic,500italic,700italic' rel='stylesheet' type='text/css'>
  5. <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
  6. <html xmlns="http://www.w3.org/1999/xhtml" dir="{S_CONTENT_DIRECTION}" id="min-width" lang="{L_LANG_HTML}" xml:lang="{L_LANG_HTML}" {NAMESPACE_FB_LIKE} {NAMESPACE_FB} {NAMESPACE_BBCODE}>
  7. <head>
  8. <title>{SITENAME_TITLE}{PAGE_TITLE}</title>
  9. <meta http-equiv="content-type" content="text/html; charset={S_CONTENT_ENCODING}" />
  10. <meta http-equiv="content-script-type" content="text/javascript" />
  11. <meta http-equiv="content-style-type" content="text/css" />
  12. <!-- BEGIN switch_compat_meta -->
  13. <meta http-equiv="X-UA-Compatible" content="IE={switch_compat_meta.VERSION}" />
  14. <!-- END switch_compat_meta -->
  15. <!-- BEGIN switch_canonical_url -->
  16. <link rel="canonical" href="{switch_canonical_url.CANONICAL_URL}" />
  17. <!-- END switch_canonical_url -->
  18. {META_FAVICO}
  19. {META}
  20. {META_FB_LIKE}
  21. <meta name="title" content="{SITENAME_TITLE}{PAGE_TITLE}" />
  22. {T_HEAD_STYLESHEET}
  23. {CSS}
  24. <link rel="search" type="application/opensearchdescription+xml" href="/improvedsearch.xml" title="{SITENAME}" />
  25. <link rel="search" type="application/opensearchdescription+xml" href="{URL_BOARD_DIRECTORY}/search/improvedsearch.xml" title="{SEARCH_FORUMS}" />
  26. <script src="{JQUERY_PATH}" type="text/javascript"></script>
  27. <script src="{JS_DIR}{L_LANG}.js" type="text/javascript"></script>
  28.  
  29. <!-- BEGIN switch_fb_login -->
  30. <script src="https://connect.facebook.net/{switch_fb_login.FB_LOCAL}/all.js" type="text/javascript"></script>
  31. <script src="{switch_fb_login.JS_FB_LOGIN}" type="text/javascript"></script>
  32. <!-- END switch_fb_login -->
  33.  
  34. <!-- BEGIN switch_ticker -->
  35. <link type="text/css" rel="stylesheet" href="{JS_DIR}jquery/ticker/ticker.css" />
  36. <script src="{JS_DIR}jquery/ticker/ticker.js" type="text/javascript"></script>
  37. <!-- END switch_ticker -->
  38.  
  39. <!-- BEGIN switch_ticker_new -->
  40. <script src="{JS_DIR}jquery/jcarousel/jquery.jcarousel.js" type="text/javascript"></script>
  41. <script type="text/javascript">//<![CDATA[
  42. /* Definir le sens de direction en fonction du panneau admin */
  43. var tickerDirParam = "{switch_ticker.DIRECTION}";
  44. var slid_vert = false;
  45. var auto_dir = 'next';
  46. var h_perso = parseInt({switch_ticker.HEIGHT});
  47.  
  48. switch( tickerDirParam )
  49. {
  50. case 'top' :
  51. slid_vert = true;
  52. break;
  53.  
  54. case 'left':
  55. break;
  56.  
  57. case 'bottom':
  58. slid_vert = true;
  59. auto_dir = 'prev';
  60. break;
  61.  
  62. case 'right':
  63. auto_dir = 'prev';
  64. break;
  65.  
  66. default:
  67. slid_vert = true;
  68. }
  69.  
  70. $(document).ready(function() {
  71.  
  72. var width_max = $('ul#fa_ticker_content').width();
  73. var width_item = Math.floor(width_max / {switch_ticker.SIZE});
  74.  
  75. if (width_max > 0)
  76. {
  77. $('#fa_ticker_content').css('display','block');
  78.  
  79. $('ul#fa_ticker_content li').css('float','left').css('list-style','none').width(width_item).find('img').each(function () {
  80. if ($(this).width() > width_item)
  81. {
  82. var ratio = $(this).width() / width_item;
  83. var new_height = Math.round($(this).height() / ratio);
  84. $(this).height(new_height).width(width_item);
  85. }
  86. });
  87.  
  88. if (slid_vert)
  89. {
  90. var height_max = h_perso;
  91.  
  92. $('ul#fa_ticker_content li').each( function () {
  93. if ($(this).height() > height_max)
  94. {
  95. height_max = $(this).height();
  96. }
  97. } );
  98.  
  99. $('ul#fa_ticker_content').width(width_item).height(height_max).css('marginLeft','auto').css('marginRight','auto');
  100. $('ul#fa_ticker_content li').height(height_max);
  101. }
  102.  
  103. $('#fa_ticker_content').jcarousel({
  104. vertical: slid_vert,
  105. wrap: 'circular',
  106. auto: {switch_ticker.STOP_TIME},
  107. auto_direction: auto_dir,
  108. scroll: 1,
  109. size: {switch_ticker.SIZE},
  110. height_max: height_max,
  111. animation: {switch_ticker.SPEED}
  112. });
  113. }
  114. else
  115. {
  116. $('ul#fa_ticker_content li:not(:first)').css('display','none');
  117. $('ul#fa_ticker_content li:first').css('list-style','none').css('text-align','center');
  118. }
  119. });
  120. //]]>
  121. </script>
  122. <!-- END switch_ticker_new -->
  123.  
  124. <script type="text/javascript">
  125. //<![CDATA[
  126. jQuery().ready(function(){
  127. <!-- BEGIN switch_enable_pm_popup -->
  128. pm = window.open('{U_PRIVATEMSGS_POPUP}', '_faprivmsg', 'HEIGHT=225,resizable=yes,WIDTH=400');
  129. if(pm != null) { pm.focus(); }
  130. <!-- END switch_enable_pm_popup -->
  131. <!-- BEGIN switch_report_popup -->
  132. report = window.open('{switch_report_popup.U_REPORT_POPUP}', '_phpbbreport', 'HEIGHT={switch_report_popup.S_HEIGHT},resizable=yes,scrollbars=no,WIDTH={switch_report_popup.S_WIDTH}');
  133. if(report != null) { report.focus(); }
  134. <!-- END switch_report_popup -->
  135. <!-- BEGIN switch_ticker -->
  136. $(window).load(function() {
  137. Ticker.start({
  138. height : {switch_ticker.HEIGHT},
  139. spacing : {switch_ticker.SPACING},
  140. speed : {switch_ticker.SPEED},
  141. direction : '{switch_ticker.DIRECTION}',
  142. pause : {switch_ticker.STOP_TIME}
  143. });
  144. });
  145. <!-- END switch_ticker -->
  146. });
  147.  
  148. <!-- BEGIN switch_login_popup -->
  149. var logInPopUpLeft, logInPopUpTop, logInPopUpWidth = {LOGIN_POPUP_WIDTH}, logInPopUpHeight = {LOGIN_POPUP_HEIGHT}, logInBackgroundResize = false, logInBackgroundClass = false;
  150. <!-- END switch_login_popup -->
  151.  
  152. <!-- BEGIN switch_login_popup -->
  153. $(document).ready( function() {
  154. $(window).resize(function() {
  155. var windowWidth = document.documentElement.clientWidth;
  156. var popupWidth = $("#login_popup").width();
  157. var mypopup = $("#login_popup");
  158.  
  159. $("#login_popup").css({
  160. "left": windowWidth/2 - popupWidth/2
  161. });
  162. });
  163. });
  164. <!-- END switch_login_popup -->
  165. //]]>
  166. </script>
  167. {GREETING_POPUP}
  168. <!-- BEGIN switch_ticker_new -->
  169. <style>
  170. .jcarousel-skin-tango .jcarousel-item {
  171. text-align:center;
  172. width: 10px;
  173. }
  174.  
  175. .jcarousel-skin-tango .jcarousel-item-horizontal {
  176. margin-right: {switch_ticker.SPACING}px;
  177. }
  178.  
  179. .jcarousel-skin-tango .jcarousel-item-vertical {
  180. margin-bottom: {switch_ticker.SPACING}px;
  181. }
  182. </style>
  183. <!-- END switch_ticker_new -->
  184. {HOSTING_JS}
  185. <!-- BEGIN google_analytics_code -->
  186. <script type="text/javascript">
  187. //<![CDATA[
  188. var _gaq = _gaq || [];
  189. _gaq.push(["_setAccount", "{G_ANALYTICS_ID}"]);
  190. _gaq.push(["_trackPageview"]);
  191. _gaq.push(['_trackPageLoadTime']);
  192.  
  193. <!-- BEGIN google_analytics_code_bis -->
  194. _gaq.push(['b._setAccount', '{G_ANALYTICS_ID_BIS}']);
  195. _gaq.push(['b._trackPageview']);
  196. <!-- END google_analytics_code_bis -->
  197.  
  198. (function() {
  199. var ga = document.createElement("script"); ga.type = "text/javascript"; ga.async = true;
  200. ga.src = ("https:" == document.location.protocol ? "https://ssl" : "http://www") + ".google-analytics.com/ga.js";
  201. var s = document.getElementsByTagName("script")[0]; s.parentNode.insertBefore(ga, s);
  202. })();
  203. //]]>
  204. </script>
  205. <!-- END google_analytics_code -->
  206. </head>
  207.  
  208. <body>
  209. <!-- BEGIN hitskin_preview -->
  210. <div id="hitskin_preview" style="display: block;">
  211. <h1><img src="https://illiweb.com/fa/hitskin/hitskin_logo.png" alt="" /> <em>Hit</em>skin.com</h1>
  212. <div class="content">
  213. <p>
  214. {hitskin_preview.L_THEME_SITE_PREVIEW}
  215. <br />
  216. <span>{hitskin_preview.U_INSTALL_THEME}<a href="http://{hitskin_preview.U_RETURN_THEME}">{hitskin_preview.L_RETURN_THEME}</a></span>
  217. </p>
  218. </div>
  219. </div>
  220. <!-- END hitskin_preview -->
  221.  
  222. <!-- BEGIN switch_login_popup -->
  223. <div id="login_popup" class="module main" style="z-index: 10000 !important;">
  224. <div id="login_popup_title" class="main-head">
  225. <div class="h3">{SITENAME}</div>
  226. </div>
  227. <div class="main-content">
  228. {LOGIN_POPUP_MSG}
  229. <div id="login_popup_buttons">
  230. <form action="{S_LOGIN_ACTION}" method="get">
  231. <input type="submit" class="button2" value="{L_LOGIN}" />
  232. <input type="button" class="button2" value="{L_REGISTER}" onclick="parent.location='{U_REGISTER}';" />
  233. <input id="login_popup_close" type="button" class="button2" value="{L_DONT_DISPLAY_AGAIN}" />
  234. </form>
  235. </div>
  236. </div>
  237. </div>
  238. <!-- END switch_login_popup -->
  239.  
  240. <a id="top" name="top" accesskey="t"></a>
  241.  
  242. <div class="minwidth_IE">
  243. <div class="layout_IE">
  244. <div class="container_IE">
  245. <div class="pun">
  246. <div id="pun-intro" class="clearfix">
  247.  
  248. <header>
  249. <ul role="navigation" class="hidden">
  250. <div id="logo"></div>
  251. <div id="cssmenu">
  252. <ul>
  253. <li class="active">
  254. <a href='./forum'>Início</a></li>
  255. <li class="active">
  256. <a href='./c1-'>Recursos Humanos</a></li>
  257. <li class="active">
  258. <a href='./c4-'>Documentos</a></li>
  259. </ul>
  260. </li>
  261. </ul>
  262. </div>
  263. <!-- BEGIN switch_user_logged_in -->
  264. <div id="user_navigation" class="not_logged_in">
  265. <nav id="usuario">
  266. <ul id="menu2"><li><a href="#"><i class="fa fa-search" title="Pesquisar"></i></a></li><li><a href="/profile?mode=editprofile"><i class="fa fa-user" title="Editar Perfil"></i></a></li><li><a href="/privmsg?folder=inbox" class="msg_pv"><i class="fa fa-comments-o" title="Mensagens Privadas"></i></a></li><li><a href="/search?search_id=watchsearch"><i class="fa fa-bell" title="Notificações"></i></a></li><li style="margin: -10px 0 0;"><span class="avatar" style="border: 0 !important;"></span><a href="/profile?mode=editprofile" title="Seu Perfil" class="username"></a><br><a href="/login?logout" style="font-size: 13px">Sair</a></li></ul>
  267. <!-- END switch_user_logged_in -->
  268. </nav>
  269. <!-- BEGIN switch_user_logged_out -->
  270. <div id="user_navigation" class="not_logged_in">
  271. <nav id="desconectado"><ul id="menu2"><li><a href="#"><i class="fa fa-search" title="Pesquisar"></i></a></li><li><a onclick="show_popup('sign_in_popup_popup');" draggable="false" class="mainmenu" href="#"><i class="fa fa-sign-in" title="Entrar"></i></a></li><li><a href="./register"><i class="fa fa-key" title="Registrar"></i></a></li></ul></nav>
  272.  
  273. <!-- END switch_user_logged_out -->
  274. </header>
  275.  
  276.  
  277. </div>
  278.  
  279. <!-- BEGIN switch_ticker_new -->
  280. <div id="fa_ticker_block" style="padding-top:4px;">
  281. <div class="module main">
  282. <div class="main-content clearfix">
  283. <div id="fa_ticker_container">
  284. <ul id="fa_ticker_content" class="jcarousel-skin-tango" style="display: none;width: 100%;">
  285. <!-- BEGIN ticker_row -->
  286. <li>{switch_ticker.ticker_row.ELEMENT}</li>
  287. <!-- END ticker_row -->
  288. </ul>
  289. </div>
  290. </div>
  291. </div>
  292. </div>
  293. <!-- END switch_ticker_new -->
  294.  
  295. <!-- BEGIN switch_ticker -->
  296. <div id="fa_ticker_block" style="padding-top:4px;">
  297. <div class="module main">
  298. <div class="main-content clearfix">
  299. <div id="fa_ticker_container">
  300. <div id="fa_ticker" style="height:{switch_ticker.HEIGHT}px;">
  301. <div class="fa_ticker_content">
  302. <!-- BEGIN ticker_row -->
  303. <div>{switch_ticker.ticker_row.ELEMENT}</div>
  304. <!-- END ticker_row -->
  305. </div>
  306. </div>
  307. </div>
  308. </div>
  309. </div>
  310. </div>
  311. <!-- END switch_ticker -->
  312.  
  313. <div id="page-body">
  314. <div id="{ID_CONTENT_CONTAINER}"{CLASS_CONTENT_CONTAINER}>
  315. <div id="outer-wrapper">
  316. <div id="wrapper">
  317. <div id="container">
  318. <div id="content">
  319. <div id="{ID_LEFT}">
  320. <!-- BEGIN giefmod_index1 -->
  321. {giefmod_index1.MODVAR}
  322. <!-- BEGIN saut -->
  323. <div style="height:{SPACE_ROW}px"></div>
  324. <!-- END saut -->
  325. <!-- END giefmod_index1 -->
  326. </div>
  327. <div id="main">
  328. <div id="main-content">
  329.  
  330. <!-- BEGIN html_validation -->
  331. </div>
  332. </div>
  333. </div>
  334. </div>
  335. </div>
  336. </div>
  337. </div>
  338. </div>
  339. </div>
  340. </div>
  341. </div>
  342. </div>
  343. </body>
  344. </html>
  345. <!-- END html_validation -->
  346. <!-- #region sign_in_popup --> <div id="document_modal" class="modal" style="position: fixed; z-index: 10000; opacity: 0.4; display: none; background-color: transparent;"></div> <div id="sign_in_popup_popup" style="position: fixed; top: 280px; z-index: 10001; margin-top: -125px; left: 50%; margin-left: -290px;display:none" class="popupWrapper"> <form action="/login.forum" class="form-login" method="post"><div class="user-icon"> <img src="https://i.imgur.com/W6DCdwL.png" width="35" height="40" /> </div><div class="title-login">Membro Login</div><div class="inputs"><input name="username" type="text" required placeholder="Username" /><input name="password" type="password" required placeholder="Password" /><div class="button-login"><input name="login" type="submit" value="Entrar"></div></div><div class="link-e"><a href="profile?mode=sendpassword">Esqueceu a senha?</a></div><div class="clear"></div><br></form> <div id="sign_in_popup_close" class="popupClose clickable"><img alt="x" src="https://i.servimg.com/u/f78/18/17/62/92/close_10.png" onclick="show_popup('sign_in_popup_popup');"></div></div> <script type="text/javascript">//<![CDATA[ $(document).ready(function() {$('#user_navigation #sign_in').attr('href', '#').attr('onclick', "show_popup('sign_in_popup_popup');");/*$('#user_navigation #sign_in').click(function() {sign_in_popup();});*/});function show_popup(id) {var $oObj = $('#'+id);if ($oObj.css('display') == 'none') {$oObj.add('#document_modal').fadeIn('slow');$("input:text:eq(0):visible").focus();} else {$oObj.add('#document_modal').fadeOut('slow');} }//]]></script> <style type="text/css"> @font-face { font-family:Lato-Regular; font-style:normal; font-weight:400; src:local('Lato Regular'), local(Lato-Regular), url(http://fonts.gstatic.com/s/lato/v8/1YwB1sO8YE1Lyjf12WNiUA.woff2) format(woff2), url(http://fonts.gstatic.com/s/lato/v8/9k-RPmcnxYEPm8CNFsH2gg.woff) format(woff); } @font-face { font-family: 'Lato-Light'; font-style: normal; font-weight: 300; src: local('Lato Light'), local('Lato-Light'), url(http://fonts.gstatic.com/s/lato/v8/EsvMC5un3kjyUhB9ZEPPwg.woff2) format('woff2'), url(http://fonts.gstatic.com/s/lato/v8/KT3KS9Aol4WfR6Vas8kNcg.woff) format('woff'); } .clear { clear:both; } input:focus, a:focus { outline: none; } /** The wrapper that will contain our two forms **/ .form-login {background: #ffffff;right: 0px;margin: 0px auto;width:330px; border-radius:5px; -moz-border-radius:5px; -webkit-border-radius:5px; background-color:#ececec;} .title-login { margin-top:-25px; font-family:Lato-Light, Arial, Helvetica, sans-serif; font-size:34px; color:#333; text-align:center; }.user-icon { position:relative; width:100px; height:100px; background-color:#34d5db; border-radius:50%; -moz-border-radius:50%; -webkit-border-radius:50%; text-align:center; top:-50px; margin:0 auto; } .user-icon img { margin-top:25px; } /* inputs */ .inputs {margin-top:10px; } .inputs input[type="text"], .inputs [type="password"], .inputs [type="email"] {width:270px;height:40px;background:#d3d3d3;font-size:16px;margin-top:15px; -webkit-border-radius: 5px;-moz-border-radius: 5px;border-radius: 5px;border:0;margin-left:20px;padding:0px 10px; color:#333;font-family:"Lato-Regular", Arial, Helvetica, sans-serif;text-align:center; font-weight:700;} /* info box */ .link-1 {margin-top:15px;margin-left:20px;float:left;color:#b8b8b8;} input[type="checkbox"] {display:none;} input[type="checkbox"] + label {font-size:13px;} input[type="checkbox"] + label span {display:inline-block;width:22px;height:22px;vertical-align:middle;background:url(https://i.servimg.com/u/f39/11/55/08/10/check_10.png) -1px top no-repeat;background-position:-0px 0px; cursor:pointer;} input[type="checkbox"]:checked + label span {background:url(https://i.servimg.com/u/f39/11/55/08/10/check_10.png) -23px top no-repeat;} .link-2 {float:right;margin-top:15px;margin-right:20px;} .link-2 a, .link-2 a:hover {color:#b8b8b8;} .link-2 a:hover {text-decoration:none;} .link-e,.link-e a { margin-top:20px; color:#118ede; font-family:Lato-Regular, Arial, Helvetica, sans-serif; font-size:18px; text-decoration:none; text-align:center; } .link-e a:hover { color:#0a9fff; } /* send button */ .button-login input[type="submit"] {width:290px;height:50px;margin-left:20px;margin-top:25px;font-size:18px;font-weight:bold;text-transform:uppercase;outline: none;position: relative;cursor: pointer;border-radius: 5px;color: #fff;border:0;box-shadow:inset 0 1px #ba3c30,inset 1px 0 #ba3c30,inset -1px 0 #ba3c30,inset 0 -1px #ba3c30,0 2px #ba3c30,0 3px #ba3c30,0 4px 2px rgba(0,0,0,0.0);background: #e84c3d;} .button-login input[type="submit"]:hover { opacity:0.9; } .button-login input[type="submit"]:active {top: 3px;background: #e84c3d;box-shadow: inset 0 1px 2px #ba3c30; } <!-- .sign_in_popup_popup{border-radius:5px; -moz-border-radius:5px; -webkit-border-radius:5px;} .popupWrapper {border-radius:5px; -moz-border-radius:5px; -webkit-border-radius:5px;box-shadow: 0 10px 20px rgba(0, 0, 0, 0.5);} .ipbfs_login .ipsForm_submit {margin-top: 0;}.ipbfs_login .ipsBox_notice {margin: 0;}.ipbfs_login .input_submit {font-size: 13px;}#sign_in_popup_inner {width: 680px !important;}.popupInner {box-shadow: 0 0 3px rgba(0, 0, 0, 0.4);overflow-x: hidden;overflow-y: auto;width: 500px;}.popupInner h3 {border-bottom: 1px solid #d8d8d8;text-shadow: 0 -1px 0 rgba(255, 255, 255, 0.8);background:#eee url("https://i.servimg.com/u/f56/17/97/98/69/highli12.png") repeat-x 0 0 ;padding: 8px 10px 9px; } .popupClose {position: absolute;right: 20px;top: 20px;cursor: pointer;}--></style> <!-- #endregion sign_in_popup -->
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement