forked from schedutron/CPAP
-
Notifications
You must be signed in to change notification settings - Fork 0
/
friends.htm
25 lines (25 loc) · 826 Bytes
/
friends.htm
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
<html>
<head>
<title>Friends CGI Demo (static screen)</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"> 10
<input type=radio name=howmany value="25"> 25
<input type=radio name=howmany value="50"> 50
<input type=radio name=howmany value="100"> 100
</p>
<p>
<input type=submit>
</p>
</form>
</body>
</html>