This repository was archived by the owner on Feb 8, 2018. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathhome-empty.html
More file actions
91 lines (70 loc) · 2.67 KB
/
home-empty.html
File metadata and controls
91 lines (70 loc) · 2.67 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
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
<!DOCTYPE html>
<html>
<head lang="en">
<meta charset="UTF-8">
<title>Lipsync Beta</title>
<link rel="stylesheet" type="text/css" href="css/style.css" media="screen">
<meta name="viewport" content="width=device-width, initial-scale=1">
</head>
<body>
<div class="wrapper">
<div class="header">
<div class="header__top">
<div class="container">
<a href="/" class="logo"></a>
</div>
</div>
<div class="container">
<div class="header__wrap">
<div class="header__left">
<div class="header__left-title">Keith Morgan</div>
<div class="header__left-menu">
<a href="#" class="header__left-link">Edit profile</a>
<a href="#" class="header__left-link">Purchase history</a>
<a href="#" class="header__left-link">Sign Out</a>
</div>
</div>
<div class="header__right">
<div class="header__right-title">Your credit balance</div>
<div class="header__right-price">$12.45</div>
<div class="header__right-desc">
1 minute costs $1 <nobr>You have 12 minutes of calls</nobr>
</div>
<div class="header__right-buttons">
<a href="#" class="button button--header">Add credit</a>
<a href="#" class="header__right-recharge">Enable auto-recharge</a>
</div>
</div>
</div>
</div>
</div><!-- header -->
<div class="title">
<div class="container">
<div class="title__text">Call history</div>
</div>
</div><!-- title -->
<div class="content">
<div class="container">
<div class="call-history">
<div class="call-history__empty">
No calls have been made yet
</div>
</div>
</div>
</div><!-- content -->
</div><!-- wrapper -->
<div class="footer">
<div class="container">
<div class="footer__links">
<div class="popover">
<a href="#" class="popover__link popover__link--ios">iPhone app</a>
<a href="#" class="popover__link popover__link--android">Android app</a>
</div>
<a href="javascript:void(0)" data-val="0" class="footer__link js-popover">Download apps</a>
<a href="#" class="footer__link">LipSync quick start guide</a>
</div>
</div>
</div>
<script src="js/script.js"></script>
</body>
</html>