-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathprofile_view.html
91 lines (83 loc) · 4.2 KB
/
profile_view.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
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8" />
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>WhatsApp</title>
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/4.0.0/css/bootstrap.min.css" integrity="sha384-Gn5384xqQ1aoWXA+058RXPxPg6fy4IWvTNh0E263XmFcJlSAwiGgFAW/dAiS6JXm" crossorigin="anonymous">
<link href="https://fonts.googleapis.com/css?family=Roboto" rel="stylesheet">
<link href="https://fonts.googleapis.com/icon?family=Material+Icons" rel="stylesheet">
<link rel="stylesheet" href="./stylesheet.css" />
</head>
<body>
<!-- PRELOADER -->
<div id="mask">
<div class="loader-item fa fa-spin loader-color">
</div>
</div>
<!-- PRELOADER END -->
<!-- Start of whatsapp view -->
<div class="container-fluid no_padding">
<div class="row" id="row_height">
<div class="col-xl-11 col-sm-11 col-lg-11 col-md-11 chatbox_padding">
<div class="row" id="chatbox">
<div class="col-xl-5 col-sm-5 col-lg-5 col-md-5 chatlist">
<div class="home_text_center">
<div class="row picture-profile">
<div class="profile-pic"></div>
</div>
<div class="row">
<div class="change_photo">Change photo</div>
</div>
</div>
</div>
<div class="col-xl-7 col-sm-7 col-md-7 col-lg-7 home_section">
<div class="home_text_center" style="height:60%">
<div class="row bg-color">
<div class="your_name">Your Name</div>
</div>
<div class="row bg-color">
<div class="col-10 col-xl-10 col-sm-10 col-lg-10 col-md-10 first_name">
John Doe
</div>
<div class="col-2 col-xl-2 col-sm-2 col-lg-2 col-md-2 edit_name"><i class="material-icons">edit</i></div>
</div>
<div class="row warning">
<div class="warn_info">This is not your username or pin. This name will be visible to your WhatsApp contacts.</div>
</div>
<div class="row bg-color">
<div class="your_name">About & Phone Number</div>
</div>
<div class="row bg-color">
<div class="col-10 col-sm-10 col-xl-10 col-lg-10 col-md-10 first_name">
Available
</div>
<div class="col-2 col-xl-2 col-sm-2 col-lg-2 col-md-2 edit_name"><i class="material-icons">edit</i></div>
</div>
<div class="row bg-color" style="border-top:1px solid #eee">
<div class="col-10 col-xl-10 col-sm-10 col-lg-10 col-md-10 first_name">
0123456789
</div>
<div class="col-2 col-xl-2 col-sm-2 col-lg-2 col-md-2 edit_name"><i class="material-icons">edit</i></div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
<!-- End of whatsapp view -->
<!-- Script to load full page background for header -->
<script>
document.onreadystatechange = () => {
if (document.readyState === 'complete') {
document.getElementById("mask").style.display = "none";
document.getElementById("row_height").style.height = window.innerHeight + "px";
document.getElementById("chatbox").style.height = window.innerHeight - 50 + "px";
}
};
</script>
<!-- end of script -->
</body>
</html>