⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 welcome.cgi

📁 完整的主机服务器, (含代码).程序会监视联结到主机程序上的所有机器.可是设置开启端口,最多用户..非常完整.!
💻 CGI
字号:

// Make sure the user entered a password
if (password$ != 'Howdy')
	if (nom$ != '')
		print '<html><title>Access Denied</title>'
		print '<body bgcolor=black>'
		print '<font face=verdana color=orange>'
		print '<b>Access Denied</b><br>'
		print '</body></html>'
		end
	endif
endif

// Show screen depending on value of nom
if (nom$ != '')
	print '<html><title>Welcome ' & nom$ & '</title>'
	print '<body bgcolor=black>'
	print '<font face=verdana color=orange>'
	print 'Welcome ' & nom$ & ' to dales test site'
	print '</font></body></html>'
endif

if (nom$ == '')
	print '<html><title>User Login</title>'
	print '<body bgcolor=black>'
	print '<font face=verdana color=orange>'
	print '<img src=islogo.jpg>'
	print '<br>'
	print '<b>......User Login......</b><br>'
	print '</font><font face=verdana color=orange size=-1>'
	print '<form method=post action=welcome.cgi>'
	print '<b>Username: </b>'
	print '<input type=text name=nom maxlength=30><br>'
	print '<b>Password: </b>'
	print '<input type=password name=password maxlength=10><br>'
	print '<input type=submit value=Login>'
	print '</form></font></body></html>'
endif

⌨️ 快捷键说明

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