-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathfriendlist.html
More file actions
41 lines (36 loc) · 867 Bytes
/
friendlist.html
File metadata and controls
41 lines (36 loc) · 867 Bytes
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
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
<html>
<head>
<title>Add A Friend</title>
</head>
<body>
<a href="home.html"><h1>Recommender System</h1></a>
<h1>Add A Friend</h1>
<p>
<b>Please remember that when adding a new friend to your Friend List, always use capitals for the names.
Also, when your friend sends five or more books to you, then you must star their name in the list.
Until then, you may not have a star on their name.</b>
</p>
<form action="newfriend.html">
<table>
<tr>
<th>Add Friend to List</th>
<td><input name="f"></td>
</tr>
<tr>
<th>Teacher</th>
<td><input name="t"></td>
</tr>
<tr>
<th>Grade</th>
<td><input name="g"></td>
</tr>
<tr>
<th>School</th>
<td><input name="s"></td>
</tr>
</table>
<button>Confirm</button>
</form>
<a href="mainfriendlist.html"><button>Main Friend List</button></a>
</body>
</html>