-
Notifications
You must be signed in to change notification settings - Fork 3
/
friendships.html
73 lines (51 loc) · 2.56 KB
/
friendships.html
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
69
70
71
72
73
<!DOCTYPE html>
<html>
<head>
<link href="https://fonts.googleapis.com/css?family=Alef|Varela+Round&display=swap" rel="stylesheet">
<link rel="icon" type="image/png" href="img/icons/logo_icon.png">
<link rel="stylesheet" href="css/mefathim.css">
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/4.4.1/css/bootstrap.min.css">
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.4.1/jquery.min.js"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/popper.js/1.16.0/umd/popper.min.js"></script>
<script src="https://maxcdn.bootstrapcdn.com/bootstrap/4.4.1/js/bootstrap.min.js"></script>
<script src="js/load.js"></script>
<script src="js/version.js"></script>
<title>חברים</title>
</head>
<body dir="rtl">
<nav id="nav" class="navbar navbar-expand-sm bg-light navbar-light fixed-top"></nav>
<h1>ניהול חברים</h1>
<div class="container" >
<div class="row">
<div id="all_users_container" class="col-3 text-top">
<div style='text-align: center; width:120px'>הצע חברות </div>
<div id="all_users"></div>
</div>
<div id="my_requests_container" class="col-3 text-top">
<div class='' style='text-align: center; width:120px'>הבקשות שלי</div>
<div id="my_requests" ></div>
</div>
<div class="col-3 text-top">
<div class=' ' style='text-align: center; width:120px'>אשר הצעות</div>
<div id="users_pending_container" > </div>
</div>
<div class="col-3 text-top">
<div class=' ' style='text-align: center; width:120px'>החברים שלי</div>
<div id="my_friends" > </div>
</div>
</div>
</div>
<p class="" id="version" ></p>
<script>
$("#version").append("גירסה: "+get_version()+"") ;
$(document).ready(function(){
buildnavbar();
// get_friends();
get_all_users();
// get_pending_requests();
set_refresh_f()
});
</script>
</body>
</html>