home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
PC World Komputer 1997 March
/
PCWK0397.iso
/
novell
/
webserv3
/
nws30.exe
/
DISK1
/
NETBASIC
/
WEB
/
WEBORA1.BAS
< prev
next >
Wrap
BASIC Source File
|
1996-09-06
|
921b
|
35 lines
#include "HTML.H"
Sub main
DOC:Heading("'NDS Login'")
DOC:Body(DOC_BLACK,DOC_CYAN,DOC_LTBLUE,DOC_RED)
DOC:Form:Begin("/netbasic/Webora2.BAS")
DOC:Image("/images/gif5.gif" ,"Logo", 110)
DOC:Print:H3(' ORACLE DATABASE ')
DOC:Print:H3('Please enter your name and password, then click the Log In button to enter the system.')
DOC:Tag:Begin(DOC_TAG_PREFMT)
DOC:Print(" ")
DOC:Form:Input:Text("User"," ","USERNAME: ",35,35); NewLine
DOC:Print(" ")
DOC:Form:Input:Password("Password","TIGER","PASSWORD: ",35,25)
DOC:Print(" ")
DOC:Form:Input:Submit("Log In")
DOC:Print(" ")
DOC:Form:Input:Reset("Clear Form")
DOC:Tag:End(DOC_TAG_PREFMT)
DOC:Form:End
DOC:Hr(1,100)
CENTERON()
DOC:Print:("Please contact rnadafi@novell.com ")
CENTEROFF()
End Sub