-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathquicklogin.html
More file actions
64 lines (59 loc) · 1.41 KB
/
quicklogin.html
File metadata and controls
64 lines (59 loc) · 1.41 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Document</title>
<style>
* {
margin: 0;
padding: 0;
box-sizing: border-box;
font-family: Arial, Helvetica, sans-serif;
}
#app {
width: 100%;
height: 100vh;
background-color: rgb(23 23 23);
display: flex;
justify-content: center;
align-items: center;
}
#login {
width: 478px;
background-color: #fff;
border-radius: 10px;
padding: 48px 0px;
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
}
#welcome {
color: #000;
font-weight: 700;
font-size: x-large;
margin: 12px 0;
}
iframe {
border: none;
}
</style>
</head>
<body>
<div id="app">
<div id="login">
<h1 id="welcome">Welcome</h1>
<div data-quicklogin></div>
</div>
</div>
<script src="https://cdn.jsdelivr.net/gh/heirloom-io/quicklogin-js@0.2.0/dist/quicklogin.js"></script>
<script>
QuickLogin.createQuickLogin({
apiKey: "YOUR_API_KEY",
lockId: "YOUR_LOCK_ID",
onQuickLoginSuccess: (authToken) => console.log(authToken),
});
</script>
</body>
</html>