vacancies.php

来自「手机wap源码-PHP-‘Jopshop’」· PHP 代码 · 共 42 行

PHP
42
字号
<?php
ob_start(); 
session_start();
require_once('../header.php');
if($HTTP_SESSION_VARS['status'] == "logged"){
header('Location: vacancies_select.php');
ob_end_flush();
}
print("
  <card id='splash' title='Vacancies' ontimer='#login'>
   <timer value='30'/>
	 <p align='center'>
		<img src='../../images/c_head_vacancies.gif' alt='Vacancies'/><br/>
		<img src='../../images/c_notice_vacancies_01.gif' alt='Please enter your University of Bradford Library account details!'/>
    </p>
</card>
  <card id='login' title='Vacancies'>");
  
  
print (" <p align='center'>
 		<a href='start.php#jobshop'><img src='../../images/c_head_vacancies.gif' alt='Vacancies'/><br/><br/></a>
		<small>Username</small>
		<br/><img src='../../images/space3.gif' alt='space'/><br/>");
		
		if(isset($HTTP_COOKIE_VARS['ck_username']) == 1){
		print "<input type='text' name='username' value='".$HTTP_COOKIE_VARS['ck_username']."' />"; 
		}else{
		print "<input type='text' name='username' />"; 
		}
		print("
		<img src='../../images/space4.gif' alt='space'/>
		<small>Password</small>
		<br/><img src='../../images/space3.gif' alt='space'/><br/>
		");
		if(isset($HTTP_COOKIE_VARS['ck_password']) == 1){
		print "<input type='password' name='password' value='".$HTTP_COOKIE_VARS['ck_password']."' />"; 
		}else{
		print "<input type='password' name='password' />"; 
		}
		print("
		<br/><br/><anchor>
		

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?