-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy pathprofile.php
More file actions
53 lines (42 loc) · 1.17 KB
/
profile.php
File metadata and controls
53 lines (42 loc) · 1.17 KB
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
42
43
44
45
46
47
48
49
50
51
52
53
<?php
include 'header.php';
?>
<div class='row'>
<div class='eight centered columns'>
<div class='panel'>
<h2>Pending Friendships</h2>
<p><?php include('notifications.php'); ?></p>
</div>
</div>
<div class='nine centered columns'>
<div class='panel'>
<h2>Add interests</h2>
<form action= "include/addTerm.php">
<input type='text' name='Type your interest'>
<input type=submit class='blue nice button' value='Add!'>
</form>
</div>
</div>
<div class='row'>
<div class='ten centered columns'>
<div class='panel'>
<h2>Kick out Friend(s)</h2>
<select>
<option value='friend_ID'>[usr_name]</option>
<!-- And so on..loop? -->
<option value='friend_ID'>Vesso</option>
<option value='friend_ID'>Isa</option>
<option value='friend_ID'>Raphael</option>
<option value='friend_ID'>Cecile</option>
</select>
<p><a href='user.html' class='red nice button'>End friendship!</a></p></div>
</div>
</div>
<div class='eleven centered columns'>
<div class='panel'>
<h2>People you may know..</h2>
</div>
</div>
<?php
include 'footer.php';
?>