-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathfriends.html
More file actions
22 lines (22 loc) · 811 Bytes
/
Copy pathfriends.html
File metadata and controls
22 lines (22 loc) · 811 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"
"http://www.w3.org/TR/html4/loose.dtd">
<html>
<head>
<title>Friends CGI Demo</title>
</head>
<body>
<H3>Friends list for:<I>NEW USER</I></H3>
<FORM ACTION="/cgi-bin/friendsA.py">
<b>Enter your Name:</b>
<INPUT type=text NAME=person VALUE="NEW USER" size=15>
<P><b>How many friends do you have?</b>
<input type="radio" NAME=howmany VALUE="0" checked>0
<input type="radio" NAME=howmany VALUE="10" checked>10
<input type="radio" NAME=howmany VALUE="25" checked>25
<input type="radio" NAME=howmany VALUE="50" checked>50
<input type="radio" NAME=howmany VALUE="100" checked>100
</P>
<input type="submit">
</FORM>
</body>
</html>