-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathuserFriends.aspx
More file actions
68 lines (65 loc) · 2.58 KB
/
userFriends.aspx
File metadata and controls
68 lines (65 loc) · 2.58 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
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
<%@ Page Language="C#" AutoEventWireup="true" CodeFile="userFriends.aspx.cs" Inherits="userFriends" %>
<!DOCTYPE html>
<html xmlns="http://www.w3.org/1999/xhtml">
<head runat='server'>
<title><%=CurUser["name"]%></title>
<link type='text/css' rel='stylesheet' href='style/main.css' />
<link type='text/css' rel='stylesheet' href='style/inputs.css' />
<link type='text/css' rel='stylesheet' href='style/userFriends.css' />
<script src="http://code.jquery.com/jquery-1.10.1.min.js"></script>
</head>
<body>
<form runat='server'>
<nav>
<div class='left'>
<img id="logo" src="images/O.png" alt="study" height="90" />
</div>
<div class='right vertical-center'>
<a id="carinha" href='<%=FileName.Profile%>'>
<img src="images/perfil.png" height='45'/>
</a>
<a id="forum" href='#naotemainda'>
<img src="images/forum.png" height='45'/>
</a>
<a id='config' href='<%=FileName.Config%>'>
<img src="images/config.png" height='45'/>
</a>
<asp:Button id='btnLogout' runat='server' text='logout' Onclick='logout' UseSubmitBehavior='false' />
</div>
<div class='content'>
<asp:TextBox id='txtSearchBox' runat='server' placeholder='pesquisar'></asp:TextBox>
<asp:Button style='display:none;' text='🔎' id='btnPesq' runat='server' onclick='btnPesq_Click' UseSubmitBehavior='true' />
</div>
</nav>
<div class='content'>
<div><!--'header' com img, nome, e etc do perfil {{{-->
<div id='main-profile-pic' class='profile_img_wrapper'>
<asp:Image id='imgProfilePicture' runat='server'/>
</div>
<div id='face_card'>
<div id='card'>
<h1><asp:Label id='lblName' runat='server'></asp:Label></h1>
<br />
<asp:label id='lblBio' runat='server'></asp:label>
<br />
<div id='profile-controls'>
<asp:button id='btnShowFriends' runat='server' text='Amigos dessa pessoa' UseSubmitBehavior='false' onclick='showFriends' />
<asp:button id='btnAddFriend' runat='server' onclick='friendRequest' UseSubmitBehavior='false' visible='false'/>
</div>
</div>
</div>
</div><!--}}}-->
<article>
<div class="tituloamigos">
<h5>Amigos de <%=CurUser["name"]%> (<%=FriendsQtd%>)</h5>
<hr />
</div>
<div class="friends" id='friends_facename' runat='server'>
</div>
</article>
</div>
<asp:SqlDataSource ID="Sqlds1" runat="server" ConnectionString="<%$ ConnectionStrings:rinfConnectionString %>" ProviderName="<%$ ConnectionStrings:rinfConnectionString.ProviderName %>">
</asp:SqlDataSource>
</form>
</body>
</html>