-
Notifications
You must be signed in to change notification settings - Fork 42
/
Copy pathHowDoesItWorkModal.vue
114 lines (100 loc) · 2.51 KB
/
HowDoesItWorkModal.vue
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
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
<template>
<modal>
<div>
<p>
Every day, over 4 million online data records are stolen or lost.
Beep tells you if your online accounts have been stolen in any of these data breaches.
Just enter your email address, username, or password, and we’ll tell you if it's been hacked.
</p>
<img
src="../images/Icon-Character-Swarm.svg"
class="bee"
alt="Swarm Character"/>
<h1>Pioneering Vue.js as a New Backend for Ionic</h1>
<p>
Beep is one of the first apps built on Vue.JS and Ionic Framework.
With this combination, PHP developers no longer have to struggle with
Angular to build cross platform Ionic apps. We even built our own router.
</p>
<h1 class="hash-protected">
<img src="../images/Icon-Hash-Protected.svg" alt="Hash protected"/>
<span>Hash Protected</span>
</h1>
<p>
We've made sure that Beep won't end up yet another name on the list of data breaches.
How? We hash all of your passwords and account information.
In other words, we never store your passwords in plain text.
Instead, we transform your password into a really, really long code and then, we send only the first five characters of that code to a server.
</p>
<h3>Carefully crafted by</h3>
<a href="https://labs.moduscreate.com">
<img
src="../images/Modus-Labs-Logo.svg"
class="modus-labs-logo"
alt="Modus Labs Logo"/>
</a>
</div>
</modal>
</template>
<script>
import Modal from './Modal.vue'
export default {
name: 'HowDoesItWorkModal',
components: {
Modal,
},
}
</script>
<style scoped>
.bee {
width: 100%;
}
p {
color: var(--beep-light-dark);
font-size: 14px;
letter-spacing: -0.34px;
line-height: 26px;
margin-bottom: 50px;
}
p:first-child {
margin-bottom: 0;
}
h1 {
color: var(--beep-dark);
font-size: 24px;
font-weight: bold;
letter-spacing: -0.6px;
line-height: 1.5;
}
.hash-protected {
line-height: 25px;
}
.hash-protected > img {
float: left;
width: 1.25rem;
}
.hash-protected > span {
margin-left: 5px;
}
h3 {
font-size: 12px;
color: var(--ion-dark-transparent);
letter-spacing: -0.29px;
line-height: 15px;
font-weight: normal;
text-align: center;
margin-top: 30px;
display: inline-block;
width: 100%;
}
.modus-labs-logo {
display: block;
margin: 0 auto;
width: 9.6825rem;
}
@media screen and (min-height: 650px) {
h2 {
font-size: 20px;
}
}
</style>